Advertisement
Ember

resources

Mar 26th, 2015
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. enum class Type : UByte
  2. {
  3.     VertexBuffer = 0,
  4.     IndexBuffer = 1,
  5.     Mesh = 2,
  6.     Shader = 3,
  7.     Texture = 4,
  8.     Material = 5,
  9.     Model = 6
  10. };
  11.  
  12. struct Description
  13. {
  14.     Type Type;
  15.     String Name;
  16.     String Source;
  17.     Void* Resource;
  18. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement