9 lines
107 B
C
9 lines
107 B
C
|
#pragma once
|
||
|
|
||
|
typedef enum {
|
||
|
PLATFORM_3DS,
|
||
|
PLATFORM_N3DS,
|
||
|
} Platform;
|
||
|
|
||
|
Platform GetUnitPlatform();
|