master
ieee 802.11ac 2 years ago
parent 01cef9ed92
commit 806f223a30

@ -1,8 +1,9 @@
#ifndef BUILDING_H
#define BUILDING_H
#include <vector>
class Building {
private:
int width, height;
int width, height; // measured in text chars because fuck else?
public:
};

@ -5,7 +5,10 @@ class Camera {
int sizeX, sizeY;
int posX, posY;
public:
bool moveCam(int newPosX, int newPosY); // returns false if failed
bool moveCamRel(int deltaPosX, int deltaPosY); // i'm not doing logic for moving the camera via the absolute every time i want to move it relative to current
bool resizeCam(int newSizeX, int newSizeY); // also returns false if failed
bool resizeCamRel(int deltaSizeX, int deltaSizeY); // doubt i need this but whatever
};
#endif

@ -0,0 +1,9 @@
#ifndef ITEMSTACK_H
#define ITEMSTACK_H
class ItemStack {
private:
int count = 0; // instantiated to 0. why? i don't know, i should probably instantiate it to 1
public:
};
#endif
Loading…
Cancel
Save