blob: 29a309bea4ea1f167cdcd68d400d2aae3424cbe0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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
}
|