public int GetComponentCount(GameEntity.ComponentType componentType) => EngineApplicationInterface.ISkeleton.GetComponentCount(this.Pointer, componentType);
 public GameEntityComponent GetComponentAtIndex(
     GameEntity.ComponentType componentType,
     int index)
 {
     return(EngineApplicationInterface.ISkeleton.GetComponentAtIndex(this.Pointer, componentType, index));
 }