]>
Dogcows Code - chaz/yoink/blob - src/TitleLayer.hh
e2b74d37e2ce2802f2e9fbdfc83b05ad9150bbb9
2 /*] Copyright (c) 2009-2010, Charles McGarvey [**************************
3 **] All rights reserved.
7 * Distributable under the terms and conditions of the 2-clause BSD license;
8 * see the file COPYING for a complete text of the license.
10 **************************************************************************/
12 #ifndef _TITLELAYER_HH_
13 #define _TITLELAYER_HH_
15 #include <boost/shared_ptr.hpp>
17 #include <Moof/Interpolator.hh>
18 #include <Moof/Math.hh>
19 #include <Moof/View.hh>
23 typedef boost::shared_ptr
<TitleLayer
> TitleLayerP
;
25 class TitleLayer
: public Mf::View
29 static TitleLayerP
alloc()
31 return TitleLayerP(new TitleLayer
);
36 void update(Mf::Scalar t
, Mf::Scalar dt
);
37 void draw(Mf::Scalar alpha
) const;
38 bool handleEvent(const Mf::Event
& event
);
47 #endif // _TITLELAYER_HH_
This page took 0.033527 seconds and 3 git commands to generate.