Advertisement
Guest User

Untitled

a guest
Sep 27th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.63 KB | None | 0 0
  1. // Hash: A6C0E1C6
  2. struct standardVertex
  3. {
  4.     float3 position : POSITION0;
  5.     float2 texcoord : TEXCOORD0;
  6.     float3 normal : NORMAL0;
  7.     float3 tangent : TANGENT0;
  8. };
  9. // Hash: 5C1DB151
  10. struct basicPostVertex
  11. {
  12.     float2 position : POSITION0;
  13.     float2 texcoord : TEXCOORD0;
  14. };
  15. // Hash: 1666807F
  16. struct simple
  17. {
  18.     float3 position : POSITION0;
  19.     float2 texcoord : TEXCOORD0;
  20.     float3 normal : NORMAL0;
  21. };
  22. // Hash: E67C0055
  23. struct rocket
  24. {
  25.     float2 position : POSITION0;
  26.     float4 color : COLOR0;
  27.     float2 texcoord : TEXCOORD0;
  28. };
  29. // Hash: 78749690
  30. struct trails
  31. {
  32.     float3 position : POSITION0;
  33.     float4 texcoord : TEXCOORD0;
  34. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement