using System.Collections.Generic; using BubbleSocketCore.Input; namespace BubbleSocketCore.Simulation.Entity { public interface IEntity { int GetId(); Dictionary<string, object> Serialize(); void SetId(int entityId); string ToString(); } }