15 lines
		
	
	
		
			279 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			279 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright (c) 2024 Dominic Masters
 | |
| // 
 | |
| // This software is released under the MIT License.
 | |
| // https://opensource.org/licenses/MIT
 | |
| 
 | |
| #pragma once
 | |
| #include "dawnlibs.hpp"
 | |
| 
 | |
| namespace Dawn {
 | |
|   enum class EntityID : uint32_t {
 | |
|     Null = 0,
 | |
|     Player = 1,
 | |
|     TestEntity = 2
 | |
|   };
 | |
| } |