nuclear@12: /* nuclear@12: eqemu - electronic queue system emulator nuclear@12: Copyright (C) 2014 John Tsiombikas , nuclear@12: Eleni-Maria Stea nuclear@12: nuclear@12: This program is free software: you can redistribute it and/or modify nuclear@12: it under the terms of the GNU General Public License as published by nuclear@12: the Free Software Foundation, either version 3 of the License, or nuclear@12: (at your option) any later version. nuclear@12: nuclear@12: This program is distributed in the hope that it will be useful, nuclear@12: but WITHOUT ANY WARRANTY; without even the implied warranty of nuclear@12: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the nuclear@12: GNU General Public License for more details. nuclear@12: nuclear@12: You should have received a copy of the GNU General Public License nuclear@12: along with this program. If not, see . nuclear@12: */ nuclear@3: #include "object.h" nuclear@3: nuclear@3: Object::Object() nuclear@3: { nuclear@3: mesh = 0; nuclear@3: } nuclear@3: nuclear@4: void Object::set_name(const char *name) nuclear@4: { nuclear@4: this->name = std::string(name); nuclear@4: } nuclear@4: nuclear@4: const char *Object::get_name() const nuclear@4: { nuclear@4: return name.c_str(); nuclear@4: } nuclear@4: nuclear@3: void Object::set_mesh(Mesh *mesh) nuclear@3: { nuclear@3: this->mesh = mesh; nuclear@3: } nuclear@3: nuclear@3: Mesh *Object::get_mesh() const nuclear@3: { nuclear@3: return mesh; nuclear@3: } nuclear@3: nuclear@3: void Object::render() const nuclear@3: { nuclear@3: if(!mesh) return; nuclear@3: nuclear@3: mtl.setup(); nuclear@3: mesh->draw(); nuclear@3: }