Guest User

Untitled

a guest
Sep 22nd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #pragma once
  2. #include <allegro5\allegro.h>
  3. #ifndef WALL_H
  4. #define WALL_H 1
  5.  
  6. class Wall{
  7. public:
  8. Wall();
  9. ~Wall();
  10. void Init();
  11. void Update();
  12. void wallDraw(int ulx, int uly, int llx, int lly, int thick);
  13. /* int ulx;
  14. int uly;
  15. int llx;
  16. int lly;
  17. int thick;*/
  18. private:
  19. };
Add Comment
Please, Sign In to add comment