Made lua run under MSWin with Dev-Cpp 4.9.9.2
[sdlbotor.git] / DTile.cpp
blobab30100d02b2b297e94585743fe1e12600c1cc44
1 #include "DTile.h"
3 namespace botor
6 DTile::DTile( Tileset *set, unsigned int T )
8 this->set = set;
9 this->T = T;
12 DTile::~DTile() {}
14 void DTile::setTile( unsigned int T )
16 this->T = T;
19 void DTile::Draw( Sint16 X, Sint16 Y )
21 set->Draw( X, Y, T );