Advertisement
Draegon

Canvas.h

Nov 24th, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. // ARQUIVO .H DA CLASSE CANVAS.
  2. #ifndef CANVAS_H
  3. #define CANVAS_H
  4.  
  5. class Canvas
  6. {
  7.     public:
  8.         Canvas(int x,int y);
  9.         void getTam();
  10.  
  11.     private:
  12.         int tamanho[2];
  13.  
  14. };
  15.  
  16. #endif // CANVAS_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement