mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-09-04 01:07:56 -04:00
eed14acdc6
The hope of auto-importing data via lld MinGW + pseudo_reloc is now dead thanks to ARM64, so I just wrote a script to go annotate every exported data symbol in the game instead.
19 lines
360 B
C++
19 lines
360 B
C++
/**
|
|
* d_com_inf_actor.cpp
|
|
* dolzel2 - Common Information For Actor
|
|
*/
|
|
|
|
#include "d/dolzel.h" // IWYU pragma: keep
|
|
|
|
#include "d/d_com_inf_actor.h"
|
|
#include <types.h>
|
|
|
|
DUSK_GAME_DATA dComIfAc_info_c g_dComIfAc_gameInfo = {
|
|
0, // field_0x0
|
|
false, // mPause
|
|
};
|
|
|
|
DUSK_GAME_DATA dComIfGoat_info_c g_dComIfGoat_gameInfo = {
|
|
NULL, // field_0x0
|
|
};
|