21 lines
		
	
	
		
			201 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			201 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #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;
 | |
| 	};
 | |
| }
 |