19 lines
356 B
C#
19 lines
356 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace Creatures.Boxsack
|
||
|
{
|
||
|
public class BoxsackVitalReaction : MonoBehaviour, IVitalReaction
|
||
|
{
|
||
|
public void Hit()
|
||
|
{
|
||
|
//Play animation
|
||
|
print("Boxsack Vital Reaction Hit");
|
||
|
}
|
||
|
|
||
|
public void Heal()
|
||
|
{
|
||
|
print("Boxsack Vital Reaction Heal");
|
||
|
}
|
||
|
}
|
||
|
}
|