Guest User

Untitled

a guest
Dec 27th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. class A {
  2. public:
  3.     virtual void Draw();
  4.     virtual void Update();
  5. protected:
  6.     vitrual void Test();
  7. }
  8.  
  9. class B :public A {
  10. public:
  11.     virtual void Draw();
  12. protected:
  13. }
  14.  
  15. class C :public B {
  16. public:
  17.     void Draw();
  18.     void Update();
  19. protected:
  20.     void Test();
  21. }
Advertisement
Add Comment
Please, Sign In to add comment