Advertisement
snake5

metaprop test output

Apr 6th, 2016
431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.65 KB | None | 0 0
  1. --- basic info dumping ---
  2. struct Vec2
  3. {
  4.         float x
  5.         float y
  6. }
  7. struct Vec2
  8. {
  9.         float x
  10.         float y
  11. }
  12.  
  13. --- basic data dumping ---
  14. struct Vec2
  15. {
  16.         x = float (1337.000000)
  17.         y = float (3.140000)
  18. }
  19.  
  20. --- basic info retrieval ---
  21. - name(): Vec2
  22. - propcount(): 2
  23.  
  24. --- finding properties ---
  25. property 'x' info = 00404400
  26. property 'y' info = 00404410
  27.  
  28. --- reading/writing properties ---
  29. property 'x' before modification: 1337.000000; mpd_GetProp: 1337.000000
  30. property 'x' after modification: 12345.000000; mpd_GetProp: 12345.000000
  31. struct Vec2
  32. {
  33.         x = float (12345.000000)
  34.         y = float (3.140000)
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement