blob: 30acec1619479e6adcb0484ce81bd4fb2a2c7b73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//
// Created by red031000 on 2020-05-05.
//
#ifndef POKEDIAMOND_OS_EMULATOR_H
#define POKEDIAMOND_OS_EMULATOR_H
#include "consts.h"
BOOL OS_IsRunOnEmulator(void);
u32 OS_GetConsoleType(void);
#endif //POKEDIAMOND_OS_EMULATOR_H
|