mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
10 lines
122 B
C++
10 lines
122 B
C++
|
#pragma once
|
||
|
|
||
|
enum class TitleId : u64 {
|
||
|
x = 0UL,
|
||
|
};
|
||
|
|
||
|
class EmbeddedBoot2 {
|
||
|
public:
|
||
|
static void Main();
|
||
|
};
|