Files
tactility/Tactility/Source/kernel/Platform.cpp
T
2026-07-05 12:47:37 +02:00

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