21 lines
213 B
C
21 lines
213 B
C
|
#pragma once
|
||
|
|
||
|
#include "ehs/EHS.h"
|
||
|
#include "ehs/BaseObj.h"
|
||
|
#include "ehs/Str.h"
|
||
|
|
||
|
namespace ehs
|
||
|
{
|
||
|
enum class DType : UInt_8
|
||
|
{
|
||
|
|
||
|
};
|
||
|
|
||
|
class DVar : public BaseObj
|
||
|
{
|
||
|
private:
|
||
|
Str_8 id;
|
||
|
UInt_64 hashId;
|
||
|
};
|
||
|
}
|