Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/Presentation_FS19/src/modules/OrxoBlox/OrxoBloxCanon.h @ 12411

Last change on this file since 12411 was 12396, checked in by pomselj, 5 years ago

Jesus safed our souls and stopped the crashing. Hallowed be his name and hallowed be his followers sevy and aryo, first of their names, saviors of the andals the raynars and the first nerds. Fourier is love btw

File size: 570 bytes
Line 
1#ifndef _OrxoBloxCanon_H__
2#define _OrxoBloxCanon_H__
3
4#include "asteroids2D/Asteroids2DPrereqs.h"
5
6#include "weapons/WeaponsPrereqs.h"
7#include "weapons/weaponmodes/HsW01.h"
8#include "weapons/projectiles/BallProjectile.h"
9
10namespace orxonox
11{
12    class _OrxoBloxExport OrxoBloxCanon : public HsW01
13    {
14        public:
15            OrxoBloxCanon(Context* context);
16            virtual ~OrxoBloxCanon();
17
18        protected:
19            virtual void shot() override; //2D movement
20            WeakPtr<BallProjectile> projectile;
21    };
22}
23
24#endif /* _OrxoBloxCanon_H__ */
Note: See TracBrowser for help on using the repository browser.