This reverts commit eb6101d2ec2d7828c40bccf4195a2bf3ec13780a. reverting textures
		
			
				
	
	
		
			25 lines
		
	
	
		
			431 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			431 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package org.hl.engine.graphics;
 | |
| 
 | |
| import org.hl.engine.math.Vector3f;
 | |
| 
 | |
| public class Vertex {
 | |
| 
 | |
|     // Just a vertex
 | |
| 
 | |
|     private Vector3f position;
 | |
|     private Vector3f color;
 | |
| 
 | |
|     public Vertex (Vector3f position, Vector3f color) {
 | |
|         this.position = position;
 | |
|         this.color = color;
 | |
|     }
 | |
| 
 | |
|     public Vector3f getPosition() {
 | |
|         return position;
 | |
|     }
 | |
| 
 | |
|     public Vector3f getColor() {
 | |
|         return color;
 | |
|     }
 | |
| }
 |