mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-05-30 03:01:32 +00:00
17 lines
224 B
C
17 lines
224 B
C
#ifndef SRESINFO_H
|
|
#define SRESINFO_H
|
|
|
|
#include <Common/CFourCC.h>
|
|
#include <Common/types.h>
|
|
|
|
struct SResInfo
|
|
{
|
|
bool compressed;
|
|
CFourCC resType;
|
|
u64 resID;
|
|
u32 offset;
|
|
u32 size;
|
|
};
|
|
|
|
#endif // SRESINFO_H
|