Stated to make work forward animation (some changes are untested).
[tagua/yd.git] / src / fwd.h
blob8c28fadf91dc1c88d232a35f990c9fab0d481f75
1 /*
2 Copyright (c) 2006 Paolo Capriotti <p.capriotti@sns.it>
3 (c) 2006 Maurizio Monge <maurizio.monge@kdemail.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9 */
11 #ifndef __KBOARD_FWD_H__
12 #define __KBOARD_FWD_H__
14 #include <boost/shared_ptr.hpp>
16 typedef boost::shared_ptr<class AbstractMove> MovePtr;
17 typedef boost::shared_ptr<class AbstractPosition> PositionPtr;
18 typedef boost::shared_ptr<class AbstractPiece> PiecePtr;
19 typedef boost::shared_ptr<class AbstractAnimator> AnimatorPtr;
20 typedef boost::shared_ptr<class VariantInfo> VariantPtr;
22 typedef boost::shared_ptr<class Animation> AnimationPtr;
23 typedef boost::shared_ptr<class AnimationGroup> AnimationGroupPtr;
24 typedef boost::shared_ptr<class DropAnimation> DropAnimationPtr;
25 typedef boost::shared_ptr<class PromotionAnimation> PromotionAnimationPtr;
26 typedef boost::shared_ptr<class CaptureAnimation> CaptureAnimationPtr;
27 typedef boost::shared_ptr<class InstantAnimation> InstantAnimationPtr;
28 typedef boost::shared_ptr<class DelayAnimation> DelayAnimationPtr;
29 typedef boost::shared_ptr<class MovementAnimation> MovementAnimationPtr;
30 typedef boost::shared_ptr<class FadeAnimation> FadeAnimationPtr;
31 typedef boost::shared_ptr<class GrowAnimation> GrowAnimationPtr;
32 typedef boost::shared_ptr<class ExplodeAnimation> ExplodeAnimationPtr;
33 typedef boost::shared_ptr<class TeleportAnimation> TeleportAnimationPtr;
34 typedef boost::shared_ptr<class CrossFadingAnimation> CrossFadingAnimationPtr;
36 typedef boost::shared_ptr<class Sprite> SpritePtr;
38 #endif //__KBOARD_FWD_H__