diff options
| author | Gustav Sörnäs <gustav@sornas.net> | 2020-09-21 15:38:11 +0200 |
|---|---|---|
| committer | Gustav Sörnäs <gustav@sornas.net> | 2020-09-21 15:38:11 +0200 |
| commit | d3e70eb68019f7d4e866dbda6ee8463ec5ad901b (patch) | |
| tree | c42f4ab3f1f8651febdaa1102172544c591d5fbd /labb3/tiles/TileList.cpp | |
| parent | aa9d7f6543982618e0b4c72cfbfd3ebfeda293c1 (diff) | |
| download | tddd86-d3e70eb68019f7d4e866dbda6ee8463ec5ad901b.tar.gz | |
Given files L3 tiles
Diffstat (limited to 'labb3/tiles/TileList.cpp')
| -rw-r--r-- | labb3/tiles/TileList.cpp | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/labb3/tiles/TileList.cpp b/labb3/tiles/TileList.cpp new file mode 100644 index 0000000..29a309b --- /dev/null +++ b/labb3/tiles/TileList.cpp @@ -0,0 +1,52 @@ +// This is the .cpp file you will edit and turn in. +// We have provided a skeleton for you, +// but you must finish it as described in the spec. +// Also remove these comments here and add your own. +// TODO: remove this comment header + +#include "TileList.h" + +TileList::TileList() +{ + // TODO: write this member +} + +TileList::~TileList() +{ + // TODO: write this member +} + +void TileList::addTile(Tile tile) +{ + // TODO: write this member +} + +void TileList::drawAll(QGraphicsScene* scene) +{ + // TODO: write this member +} + +int TileList::indexOfTopTile(int x, int y) +{ + // TODO: write this member +} + +void TileList::raise(int x, int y) +{ + // TODO: write this member +} + +void TileList::lower(int x, int y) +{ + // TODO: write this member +} + +void TileList::remove(int x, int y) +{ + // TODO: write this member +} + +void TileList::removeAll(int x, int y) +{ + // TODO: write this member +} |
