mirror of
https://github.com/open-goal/jak-project
synced 2026-05-31 09:22:14 -04:00
ea479bee98
* support enums * better compiler warnings * tweaks to build with clang
10 lines
178 B
C
10 lines
178 B
C
#pragma once
|
|
|
|
struct ObjectFileData;
|
|
|
|
struct TPageResultStats {
|
|
int total_textures = 0;
|
|
int successful_textures = 0;
|
|
};
|
|
|
|
TPageResultStats process_tpage(ObjectFileData& data); |