Advertisement
Kynato

struktury.hpp

Jan 17th, 2018
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #ifndef STRUKTURY_HPP
  2. #define STRUKTURY_HPP
  3.  
  4. enum pole
  5. {
  6.     puste, waz, jedzenie
  7. };
  8.  
  9. enum kierunek
  10. {
  11.     lewo, prawo, gora, dol
  12. };
  13.  
  14. struct vector2i
  15. {
  16.     int x;
  17.     int y;
  18. };
  19.  
  20.  
  21. #endif // STRUKTURY_HPP
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement