Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/wagnis_HS18/src/modules/wagnis/Wagnis.cc @ 12119

Last change on this file since 12119 was 12119, checked in by stadlero, 5 years ago

Wagnis class does now compile

File size: 374 bytes
RevLine 
[12114]1
2
3
[12068]4#include "Wagnis.h"
5
6
[12114]7
8namespace orxonox{
9
10RegisterClass(Wagnis);
11
[12119]12//Constructor
[12114]13Wagnis::Wagnis(Context* context) : Deathmatch(context){
14    RegisterObject(Wagnis);
[12119]15    this->gameBoard = nullptr;
[12114]16}
17//Destructor
18Wagnis::~Wagnis(){}
19
20
[12119]21//Runs the game
22void Wagnis::start(){
23   
[12114]24}
25
[12119]26//Creates and links all needed classes
27void createGame(){
[12114]28
[12119]29}
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44}
45
46
[12068]47       
48   
Note: See TracBrowser for help on using the repository browser.