2019-04-27 20:19:35 +00:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
2019-04-28 14:34:50 +00:00
|
|
|
public class EntityMonster : Entity
|
2019-04-27 20:19:35 +00:00
|
|
|
{
|
|
|
|
public virtual void OnTurn(){
|
|
|
|
Debug.LogWarning("OnTurn() not overridden");
|
|
|
|
}
|
|
|
|
}
|