mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
Add TextInput in SDLSystem
This commit is contained in:
parent
73e5be6763
commit
9a632324b7
|
@ -738,6 +738,16 @@ namespace MiniEngine
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void SDLSystem::StartTextInput()
|
||||||
|
{
|
||||||
|
SDL_StartTextInput();
|
||||||
|
}
|
||||||
|
|
||||||
|
void SDLSystem::StopTextInput()
|
||||||
|
{
|
||||||
|
SDL_StopTextInput();
|
||||||
|
}
|
||||||
|
|
||||||
AudioPlayer::AudioPlayer()
|
AudioPlayer::AudioPlayer()
|
||||||
{
|
{
|
||||||
if (!_sysAudioCounter)
|
if (!_sysAudioCounter)
|
||||||
|
|
|
@ -257,6 +257,9 @@ namespace MiniEngine
|
||||||
|
|
||||||
static Platform GetPlatform();
|
static Platform GetPlatform();
|
||||||
|
|
||||||
|
static void StartTextInput();
|
||||||
|
static void StopTextInput();
|
||||||
|
|
||||||
class Android
|
class Android
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user