mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-03 15:27:25 +00:00
Add ZCG cpp domain classes
This commit is contained in:
22
src/ZoneCodeGeneratorNew/Domain/FastFile/FastFileBlock.h
Normal file
22
src/ZoneCodeGeneratorNew/Domain/FastFile/FastFileBlock.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
enum class FastFileBlockType
|
||||
{
|
||||
TEMP,
|
||||
RUNTIME,
|
||||
DELAY,
|
||||
NORMAL
|
||||
};
|
||||
|
||||
class FastFileBlock
|
||||
{
|
||||
public:
|
||||
std::string m_name;
|
||||
unsigned m_index;
|
||||
FastFileBlockType m_type;
|
||||
bool m_is_default;
|
||||
|
||||
FastFileBlock(std::string name, unsigned index, FastFileBlockType type, bool isDefault);
|
||||
};
|
Reference in New Issue
Block a user