From d894e06c6e6a335ea672ca2aaf30066b0a9d077a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Mon, 17 Aug 2020 14:57:07 +0200 Subject: add given files --- labb3/tiles/TileList.cpp | 52 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 labb3/tiles/TileList.cpp (limited to 'labb3/tiles/TileList.cpp') 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 +} -- cgit v1.2.1