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