The Greatest Game Dev To Have Ever Lived
This commit is contained in:
parent
fada3af715
commit
00e65ff31f
16 changed files with 398 additions and 37 deletions
16
Assets/Scripts/ClassAbility.cs
Normal file
16
Assets/Scripts/ClassAbility.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
using UnityEngine;
|
||||
|
||||
public class ClassAbility : MonoBehaviour
|
||||
{
|
||||
public string abilityName;
|
||||
public PlayerEntity thisEntity;
|
||||
public virtual void TryAbility()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
protected virtual void AbilityEffects()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue