11 lines
148 B
Plaintext
11 lines
148 B
Plaintext
|
#pragma once
|
||
|
|
||
|
struct TexturePatch {
|
||
|
s32 key;
|
||
|
s32 value;
|
||
|
};
|
||
|
|
||
|
struct TexturePatchDatabase {
|
||
|
s32 count;
|
||
|
TexturePatch patches[count];
|
||
|
};
|