Advertisement
Guest User

Untitled

a guest
May 11th, 2012
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. struct Shared {
  2. float position[3];
  3. float rotation[4];
  4. float scale[3];
  5. };
  6.  
  7. class Unit {
  8. Shared* ptr;
  9. };
  10. class Object {
  11. Shared* ptr;
  12. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement