mirror of
				https://github.com/esiur/esiur-dotnet.git
				synced 2025-10-31 16:01:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			314 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			314 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Text;
 | |
| 
 | |
| namespace Esiur.Data
 | |
| {
 | |
|     public struct ResourceId
 | |
|     {
 | |
|         public bool Local;
 | |
|         public uint Id;
 | |
| 
 | |
|         public ResourceId(bool local, uint id)
 | |
|         {
 | |
|             this.Id = id;
 | |
|             this.Local = local;
 | |
|         }
 | |
|     }
 | |
| }
 |