BaseGUI.cpp 313 B

123456789101112
  1. #include "client/gui/BaseGUI.h"
  2. BaseGUI::BaseGUI(const Size& size, TextInput& textInput,
  3. const Controller& controller)
  4. : size(size), textInput(textInput), controller(controller) {
  5. }
  6. void BaseGUI::render(float lag, ShaderMatrix& sm, Renderer& r) {
  7. (void)lag;
  8. (void)sm;
  9. (void)r;
  10. }