Пример #1
0
 /// <summary>
 /// Removes a component. The component will be removed at the end of the frame.
 /// </summary>
 /// <param name="Component"> The component to be removed. </param>
 public void RemoveGraphicsComponent(GraphicsComponent Component)
 {
     ToRemove.Enqueue(Component);
 }
Пример #2
0
 /// <summary>
 /// Removes a component. The component will be removed at the end of the frame.
 /// </summary>
 /// <param name="Component"> The component to be removed. </param>
 public void RemoveGraphicsComponent(GraphicsComponent Component)
 {
     ToRemove.Enqueue(Component);
 }
Пример #3
0
 /// <summary>
 /// Adds a component. The component will be added at the end of the frame.
 /// </summary>
 /// <param name="NewComponent"> The component to add. </param>
 public void AddGraphicsComponent(GraphicsComponent NewComponent)
 {
     ToAdd.Enqueue(NewComponent);
 }
Пример #4
0
 /// <summary>
 /// Adds a component. The component will be added at the end of the frame.
 /// </summary>
 /// <param name="NewComponent"> The component to add. </param>
 public void AddGraphicsComponent(GraphicsComponent NewComponent)
 {
     ToAdd.Enqueue(NewComponent);
 }