Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #pragma once
  2. class Field {
  3. public:
  4. int x, y, FIELD_SIZE;
  5. Field();
  6. Field(int, int, int);
  7. void tick();
  8. void render(int, int);
  9. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement