/// <summary>
 /// Creates a new ClientEntity
 /// </summary>
 /// <param name="entityId">Unique ID of this entity</param>
 /// <param name="options">Options Object of this entity</param>
 /// <param name="graphics">Graphics component for drawing</param>
 private ClientEntity(string entityId, EntityOptions options, IGraphicsComponent graphics) : base(entityId, options)
 {
     _graphics = graphics;
 }