mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-05-30 11:11:37 +00:00
15 lines
222 B
C++
15 lines
222 B
C++
#ifndef SNAMEDRESOURCE_H
|
|
#define SNAMEDRESOURCE_H
|
|
|
|
#include <Common/CFourCC.h>
|
|
#include <Common/types.h>
|
|
|
|
struct SNamedResource
|
|
{
|
|
CFourCC resType;
|
|
std::string resName;
|
|
u64 resID;
|
|
};
|
|
|
|
#endif // SNAMEDRESOURCE_H
|