1 | //************************************ bs::framework - Copyright 2018 Marko Pintera **************************************// |
---|---|
2 | //*********** Licensed under the MIT license. See LICENSE.md for full terms. This notice is not to be removed. ***********// |
3 | #include "GUI/BsGUITextInputEvent.h" |
4 | |
5 | namespace bs |
6 | { |
7 | void GUITextInputEvent::setData(UINT32 inputChar) |
8 | { |
9 | mInputChar = inputChar; |
10 | } |
11 | } |