Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #pragma once
- #include <sgs_cppbc.h>
- #include <stdio.h>
- class thing
- {
- public:
- SGS_OBJECT;
- thing( int sz ) : size( sz ){}
- SGS_METHOD int getTotalSize();
- SGS_METHOD void addThing( thing* ch );
- private:
- SGS_PROPERTY int size;
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement