Firstborn/Assets/RPG Creation Kit/Scripts/Interfaces/IRangedAttacker.cs
Schaken-Mods 959e80cf72 assets upload
assets upload description.
2023-03-28 12:16:30 -05:00

39 lines
841 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RPGCreationKit;
namespace RPGCreationKit
{
/// <summary>
/// Entities that can attack
/// </summary>
interface IRangedAttacker
{
/// <summary>
/// Draws the Weapon
/// </summary>
void DrawWeapon();
/// <summary>
/// Undraws the weapon
/// </summary>
void UndrawWeapon();
/// <summary>
/// Method that runs when the entity has to perfrom a melee attack, usually used to check distance.
/// </summary>
void RangedAttackCheck();
/// <summary>
/// Performs the melee attack
/// </summary>
void RangedAttackEvent();
void BlockEvent();
void OnEnterCombat();
void UseRanged();
}
}