mirror of
https://github.com/open-goal/jak-project
synced 2026-05-29 16:45:10 -04:00
09142d1712
* generate object, but not supported in linker yet * add link and tests * update types
18 lines
360 B
C++
18 lines
360 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include "common/common_types.h"
|
|
|
|
struct GameCountResult {
|
|
struct CountInfo {
|
|
s32 money_count;
|
|
s32 buzzer_count;
|
|
};
|
|
|
|
std::vector<CountInfo> info;
|
|
u32 mystery_data[2];
|
|
};
|
|
|
|
struct ObjectFileData;
|
|
GameCountResult process_game_count(ObjectFileData& data);
|
|
std::string write_game_count(const GameCountResult& result); |