Advertisement
Guest User

RawModel

a guest
May 9th, 2015
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. package net.lesson.graphics.models;
  2.  
  3. public class RawModel {
  4.    
  5.     private int vaoID;
  6.     private int vertexcount;
  7.    
  8.  
  9.     public RawModel(int vaoID, int vertexcount) {
  10.         this.vaoID = vaoID;
  11.         this.vertexcount = vertexcount;
  12.     }
  13.  
  14.     public int getVaoID() {
  15.         return vaoID;
  16.     }
  17.  
  18.     public int getVertexcount() {
  19.         return vertexcount;
  20.     }
  21.  
  22.  
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement