mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-06 14:25:08 +01:00
15 lines
213 B
C
15 lines
213 B
C
|
#parse("Copyright Notice Header.h")
|
||
|
#pragma once
|
||
|
|
||
|
#if (${NAMESPACES_OPEN} == "")
|
||
|
namespace skyline {
|
||
|
#else
|
||
|
${NAMESPACES_OPEN}
|
||
|
#end
|
||
|
class ${NAME} {
|
||
|
};
|
||
|
#if (${NAMESPACES_OPEN} == "")
|
||
|
}
|
||
|
#else
|
||
|
${NAMESPACES_CLOSE}
|
||
|
#end
|