Add boot namespace and adjust names
This commit is contained in:
@@ -4,31 +4,32 @@
|
||||
|
||||
namespace JabyEngine {
|
||||
//boot namespace?
|
||||
|
||||
namespace CD {
|
||||
void setup();
|
||||
}
|
||||
namespace boot {
|
||||
namespace BootFile {
|
||||
JabyEngine::NextRoutine setup();
|
||||
}
|
||||
|
||||
namespace GPU {
|
||||
void display_logo();
|
||||
void setup();
|
||||
}
|
||||
namespace CD {
|
||||
void setup();
|
||||
}
|
||||
|
||||
namespace SPU {
|
||||
void stop_voices();
|
||||
void setup();
|
||||
}
|
||||
namespace GPU {
|
||||
void display_logo();
|
||||
void setup();
|
||||
}
|
||||
|
||||
namespace Setup {
|
||||
JabyEngine::NextRoutine start();
|
||||
}
|
||||
namespace SPU {
|
||||
void stop_voices();
|
||||
void setup();
|
||||
}
|
||||
|
||||
namespace BootFile {
|
||||
JabyEngine::NextRoutine setup();
|
||||
}
|
||||
namespace Start {
|
||||
JabyEngine::NextRoutine setup();
|
||||
}
|
||||
|
||||
namespace Timer {
|
||||
void setup();
|
||||
namespace Timer {
|
||||
void setup();
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif //!BOOT_LOADER_HPP
|
||||
Reference in New Issue
Block a user