using Enemies.States; namespace Enemies { public class AttackState: IState { private Enemy context; public AttackState(Enemy context) { this.context = context; } public void Enter() { throw new System.NotImplementedException(); } public void Execute() { throw new System.NotImplementedException(); } public void Exit() { throw new System.NotImplementedException(); } } }