mirror of
https://github.com/kbeckmann/game-and-watch-retro-go.git
synced 2025-12-16 13:15:55 +01:00
14 lines
203 B
C
14 lines
203 B
C
#pragma once
|
|
|
|
typedef enum {
|
|
APPID_LAUNCHER = 0,
|
|
APPID_GB = 1,
|
|
APPID_NES = 2,
|
|
APPID_SMS = 3,
|
|
APPID_PCE = 4,
|
|
APPID_GW = 5,
|
|
|
|
APPID_COUNT,
|
|
} appid_t;
|
|
|