Files
jak-project/decompiler/data/game_count.h
T
water111 09142d1712 Support "game count" and v4 objects (#140)
* generate object, but not supported in linker yet

* add link and tests

* update types
2020-11-24 20:48:38 -05:00

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);