Files
GDevelop/Extensions/SystemInfo/SystemInfoTools.cpp
T
2016-08-07 22:26:41 +02:00

21 lines
293 B
C++

/**
GDevelop - SystemInfo Extension
Copyright (c) 2016 Florian Rival (Florian.Rival@gmail.com)
This project is released under the MIT License.
*/
namespace SystemInfo
{
bool GD_EXTENSION_API IsMobile()
{
#if defined(ANDROID)
return true;
#else
return false;
#endif
}
}