Skip to content
Snippets Groups Projects
Commit df4e6537 authored by Ian Prins's avatar Ian Prins
Browse files

add room.h

parent f422525c
No related branches found
No related tags found
No related merge requests found
#include "coord.h"
#include "level.h"
class Room {
public:
Room(Coord, Coord);
Coord getPosition1();
Coord getPosition2();
void dig(Level);
private:
Coord topLeft;
Coord bottomRight;
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment