BsGUITextInputEvent.cpp 452 B

1234567891011121314151617
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #include "GUI/BsGUITextInputEvent.h"
  4. namespace bs
  5. {
  6. GUITextInputEvent::GUITextInputEvent()
  7. :mInputChar(0)
  8. {
  9. }
  10. void GUITextInputEvent::setData(UINT32 inputChar)
  11. {
  12. mInputChar = inputChar;
  13. }
  14. }