mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
14 lines
194 B
C++
14 lines
194 B
C++
#include "Tactility/kernel/Platform.h"
|
|
|
|
namespace tt::kernel {
|
|
|
|
Platform getPlatform() {
|
|
#ifdef ESP_PLATFORM
|
|
return PlatformEsp;
|
|
#else
|
|
return PlatformSimulator;
|
|
#endif
|
|
}
|
|
|
|
} // namespace
|