Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --- basic info dumping ---
- struct Vec2
- {
- float x
- float y
- }
- struct Vec2
- {
- float x
- float y
- }
- --- basic data dumping ---
- struct Vec2
- {
- x = float (1337.000000)
- y = float (3.140000)
- }
- --- basic info retrieval ---
- - name(): Vec2
- - propcount(): 2
- --- finding properties ---
- property 'x' info = 00404400
- property 'y' info = 00404410
- --- reading/writing properties ---
- property 'x' before modification: 1337.000000; mpd_GetProp: 1337.000000
- property 'x' after modification: 12345.000000; mpd_GetProp: 12345.000000
- struct Vec2
- {
- x = float (12345.000000)
- y = float (3.140000)
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement