Reorganized project again.

This commit is contained in:
2023-12-17 15:56:13 -08:00
parent 54b9e82789
commit 3acb78f247
250 changed files with 1586 additions and 1586 deletions

20
include/database/DVar.h Normal file
View File

@@ -0,0 +1,20 @@
#pragma once
#include "EHS.h"
#include "BaseObj.h"
#include "Str.h"
namespace ehs
{
enum class DType : UInt_8
{
};
class DVar : public BaseObj
{
private:
Str_8 id;
UInt_64 hashId;
};
}