X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2FMoof%2FLayer.hh;fp=src%2FMoof%2FLayer.hh;h=0000000000000000000000000000000000000000;hb=e0c0a3b5e7337cde55e520801d2e59e03dc97d9c;hp=8bbb94bdb93850c9e233199a64917371450e7b1e;hpb=ed5fcf5f1357fc42749408f705e9ec55531ff006;p=chaz%2Fyoink diff --git a/src/Moof/Layer.hh b/src/Moof/Layer.hh deleted file mode 100644 index 8bbb94b..0000000 --- a/src/Moof/Layer.hh +++ /dev/null @@ -1,47 +0,0 @@ - -/*] Copyright (c) 2009-2010, Charles McGarvey [************************** -**] All rights reserved. -* -* vi:ts=4 sw=4 tw=75 -* -* Distributable under the terms and conditions of the 2-clause BSD license; -* see the file COPYING for a complete text of the license. -* -**************************************************************************/ - -#ifndef _MOOF_LAYER_HH_ -#define _MOOF_LAYER_HH_ - -#include - -#include -#include - - -namespace Mf { - - -class Layer -{ -public: - - virtual ~Layer() {} - - virtual void addedToCore() {} - virtual void removedFromCore() {} - - virtual void update(Scalar t, Scalar dt) {} - virtual void draw(Scalar alpha) const {} - virtual bool handleEvent(const Event& event) - { - return false; - } -}; - -typedef boost::shared_ptr LayerP; - - -} // namespace Mf - -#endif // _MOOF_LAYER_HH_ -