using Gameplay.Pool; using Gameplay.Unit; public class EventDataStartMove : IPoolData { public int targetCellIndex; public GameUnit sender; public void OnGet() { } public void OnReturn() { sender = null; } }