12 lines
		
	
	
		
			311 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			311 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using OpenTK;
 | |
| using OpenTK.Graphics;
 | |
| namespace RecrownedGTK.Graphics {
 | |
|     /// <summary>
 | |
|     /// Stores the information that is required per vertex.
 | |
|     /// </summary>
 | |
|     public struct VertexInformation {
 | |
|         public Vector3 coords;
 | |
|         public Vector2 textureCoords;
 | |
|         public Color4 color;
 | |
|     }
 | |
| } |