Example #1
0
 public GuiElementRenderer(GuiElements guiElements, IGuiRenderer guiRenderer)
 {
     this.guiElements = guiElements;
     this.guiRenderer = guiRenderer;
 }
Example #2
0
 public GuiElementMousePositionChecker(GuiElements guiElements)
 {
     this.guiElements = guiElements;
 }
Example #3
0
 public SelectionInteraction(SelectionTracker selectionTracker, GuiElements guiElements)
 {
     this.selectionTracker = selectionTracker;
     this.positionChecker  = new GuiElementMousePositionChecker(guiElements);
 }