Remove bogus assert
[supertux.git] / src / object / decal.cpp
1 //  SuperTux - Decal
2 //  Copyright (C) 2008 Christoph Sommer <christoph.sommer@2008.expires.deltadevelopment.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #include "object/decal.hpp"
18 #include "supertux/object_factory.hpp"
19 #include "util/reader.hpp"
20
21 Decal::Decal(const Reader& reader) :
22   MovingSprite(reader, LAYER_OBJECTS, COLGROUP_DISABLED)
23 {
24   layer = reader_get_layer (reader, /* default = */ LAYER_OBJECTS);
25
26   bool solid = false;
27   reader.get("solid", solid);
28   if(solid)
29     set_group(COLGROUP_STATIC);
30   std::string action;
31   if(reader.get("action", action))
32     set_action(action, -1);
33 }
34
35 Decal::~Decal()
36 {
37 }
38
39 /* EOF */