Add TextInput in SDLSystem

This commit is contained in:
Kirigaya Kazuto 2017-03-24 11:07:27 +08:00
parent 73e5be6763
commit 9a632324b7
2 changed files with 13 additions and 0 deletions

View File

@ -738,6 +738,16 @@ namespace MiniEngine
}
}
void SDLSystem::StartTextInput()
{
SDL_StartTextInput();
}
void SDLSystem::StopTextInput()
{
SDL_StopTextInput();
}
AudioPlayer::AudioPlayer()
{
if (!_sysAudioCounter)

View File

@ -257,6 +257,9 @@ namespace MiniEngine
static Platform GetPlatform();
static void StartTextInput();
static void StopTextInput();
class Android
{
public: