Files
tactility/Tactility/Include/Tactility/Platform.h
T
2026-07-09 21:03:38 +02:00

15 lines
246 B
C++

#pragma once
namespace tt::kernel {
/** Recognized platform types */
typedef enum {
PlatformEsp,
PlatformSimulator
} Platform;
/** @return the platform that Tactility currently is running on. */
Platform getPlatform();
} // namespace