20 lines
381 B
C#
20 lines
381 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace Creatures.Player
|
||
|
{
|
||
|
public class PlayerVitalReaction : MonoBehaviour, IVitalReaction
|
||
|
{
|
||
|
public void Hit()
|
||
|
{
|
||
|
//Play animation
|
||
|
print("Player Vital Reaction Hit");
|
||
|
}
|
||
|
|
||
|
public void Heal()
|
||
|
{
|
||
|
//Play animation
|
||
|
print("Player Vital Reaction Heal");
|
||
|
}
|
||
|
}
|
||
|
}
|