Show paintable.cpp syntax highlighted
/***************************************************************************
paintable.cpp
-------------------
begin : Mon Jan 10 2005
copyright : (C) 2005 by Brendon Lloyd Higgins
email : bh_doc@users.sourceforge.net
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include <paintable.h>
#include <client.h>
#include <worldclient.h>
#include <ClanLib/display.h>
Paintable::Paintable() {
}
Paintable::~Paintable() {
}
bool Paintable::drawUpdate(const WorldClient* w, unsigned int d) {
return true;
}
void Paintable::playerColourChange(WorldClient* w) {
}
void Paintable::displayRotationChange(WorldClient* w, const Rotation& r) {
}
See more files for this project here