mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-10 11:35:19 -05:00
0ce0ab1260
* Update LUS imported paths * Introduce GameMenuBar * Fix imports after LUS import paths change * Move Randomizer * Replace needs_save * Migrate Developer Tools * Migrate Cheats * Migrate Enhancements * Separate UIWidgets * Add missing Hooks.cpp file * Migrate Settings * Remove UI methods from LUS * Cleanup imports and exposed properties * Cleanup more methods * Fix project generation * Fix CI compilation * Remove resolved TODO
28 lines
369 B
C++
28 lines
369 B
C++
//
|
|
// GameMenuBar.hpp
|
|
// soh
|
|
//
|
|
// Created by David Chavez on 24.08.22.
|
|
//
|
|
|
|
#ifndef GameMenuBar_hpp
|
|
#define GameMenuBar_hpp
|
|
|
|
#include <stdio.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
void enableBetaQuest();
|
|
void disableBetaQuest();
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
namespace GameMenuBar {
|
|
void SetupHooks();
|
|
void Draw();
|
|
}
|
|
|
|
#endif /* GameMenuBar_hpp */
|