mirror of
https://github.com/HarbourMasters/2ship2harkinian.git
synced 2024-11-23 05:59:40 +00:00
904bf60b36
* Changes for new LUS resources * fix factory issues and bump modules * add build version, custom assets folder, and fix extraction * add missing custom assets * fix build .h * libzip in the workflows * apt-deps * Fixes to importers to work with upstream Resource Manager. Also remove duplicated structs. * Bump LUS * bump LUS * Bump LUS * bump lus * point back to louist103/mm --------- Co-authored-by: Adam Bird <archez39@me.com>
23 lines
386 B
C
23 lines
386 B
C
#ifndef BUILD_H
|
|
#define BUILD_H
|
|
|
|
#include <libultraship/libultra.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
// 2S2H [Port] Version information
|
|
extern char gBuildVersion[];
|
|
extern u16 gBuildVersionMajor;
|
|
extern u16 gBuildVersionMinor;
|
|
extern u16 gBuildVersionPatch;
|
|
|
|
extern char gBuildTeam[];
|
|
extern char gBuildDate[];
|
|
extern char gBuildMakeOption[];
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|