Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class A {
- public:
- virtual void Draw();
- virtual void Update();
- protected:
- vitrual void Test();
- }
- class B :public A {
- public:
- virtual void Draw();
- protected:
- }
- class C :public B {
- public:
- void Draw();
- void Update();
- protected:
- void Test();
- }
Advertisement
Add Comment
Please, Sign In to add comment