From 7bb6d0ab8953078efb7699c09be80ddae048a901 Mon Sep 17 00:00:00 2001 From: RedLine AI Agent Date: Fri, 5 Sep 2025 21:35:41 +0000 Subject: [PATCH] Updated libs/xassets/xplatform.h --- libs/xassets/xplatform.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 libs/xassets/xplatform.h diff --git a/libs/xassets/xplatform.h b/libs/xassets/xplatform.h new file mode 100644 index 0000000..6f38a1a --- /dev/null +++ b/libs/xassets/xplatform.h @@ -0,0 +1,16 @@ +#ifndef XPLATFORM_H +#define XPLATFORM_H + +#include + +enum XPlatform +{ + PLATFORM_NONE = 0x00, // No platform + PLATFORM_XBOX = 0x01, // Xbox 360 + PLATFORM_PS3 = 0x02, // Playstation 3 + PLATFORM_PC = 0x03, // PC + PLATFORM_WII = 0x04, // WII + PLATFORM_WIIU = 0x05 // WII U +}; + +#endif // XPLATFORM_H