2023-12-17 03:29:08 -08:00

21 lines
210 B
C++

#pragma once
#include "../EHS.h"
#include "../BaseObj.h"
#include "../Str.h"
namespace lwe
{
enum class DType : UInt_8
{
};
class DVar : public BaseObj
{
private:
Str_8 id;
UInt_64 hashId;
};
}