Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/Asteroid_HS17/src/modules/asteroids/Asteroids.cc @ 11506

Last change on this file since 11506 was 11506, checked in by vyang, 7 years ago

Asteroids, Ship, Stones, Weapon files created

File size: 392 bytes
Line 
1#include "Asteroids.h"
2
3namespace orxonox
4{
5        RegisterUnloadableClass(Asteroids);
6
7        Asteroids::Asteroids(Context* context) : Deathmatch(context)
8        {
9                level = 1;
10                this->numberOfBots = 0;
11        }
12
13        void Asteroids::spawnAsteroid();
14
15        void Asteroids::setCenterpoint(InvaderCenterPoint* center)
16    {
17        this->center_ = center;
18    }
19
20    void Asteroids::start();
21    void Asteroids::end();
22   
23}
Note: See TracBrowser for help on using the repository browser.