// $Id: drawable.cc,v 1.4 2001/07/28 20:34:49 gnurou Exp $ /* Copyright (C) 1999/2000/2001 Alexandre Courbot Part of the Adonthell Project http://adonthell.linuxgames.com This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. See the COPYING file for more details. */ /** * @file drawable.cc * @author Alexandre Courbot * * @brief Defines the drawable class. */ #include "drawable.h" using namespace std; // Public methods. drawable::drawable () { set_length (0); set_height (0); } drawable::~drawable () { } bool drawable::update () { return true; } bool drawable::input_update () { return true; }