Ejemplo n.º 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);
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 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);
 }