15 lines
234 B
C#
15 lines
234 B
C#
using UnityEngine;
|
|
|
|
public class Weapon : MonoBehaviour
|
|
{
|
|
public PlayerEntity thisEntity;
|
|
public virtual void TryAttack()
|
|
{
|
|
AttackEffects();
|
|
}
|
|
|
|
protected virtual void AttackEffects()
|
|
{
|
|
|
|
}
|
|
}
|