Adonthell  0.4
drawable.cc
Go to the documentation of this file.
00001 // $Id: drawable.cc,v 1.4 2001/07/28 20:34:49 gnurou Exp $
00002 /*
00003    Copyright (C) 1999/2000/2001   Alexandre Courbot
00004    Part of the Adonthell Project http://adonthell.linuxgames.com
00005 
00006    This program is free software; you can redistribute it and/or modify
00007    it under the terms of the GNU General Public License.
00008    This program is distributed in the hope that it will be useful,
00009    but WITHOUT ANY WARRANTY.
00010 
00011    See the COPYING file for more details.
00012 */
00013 
00014 
00015 /**
00016  * @file   drawable.cc
00017  * @author Alexandre Courbot <alexandrecourbot@linuxgames.com>
00018  * 
00019  * @brief Defines the drawable class. 
00020  */
00021 
00022 
00023 #include "drawable.h"
00024  
00025 using namespace std; 
00026 
00027 // Public methods.
00028 
00029 
00030 drawable::drawable () 
00031 {
00032     set_length (0);
00033     set_height (0); 
00034 }
00035 
00036 drawable::~drawable ()
00037 { 
00038 }
00039 
00040 bool drawable::update ()
00041 {
00042     return true; 
00043 }
00044 
00045 bool drawable::input_update ()
00046 {
00047     return true; 
00048 }