Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/SuperOrxoBros_HS18/test/core_plugin/Testclass.cc @ 12177

Last change on this file since 12177 was 12177, checked in by siramesh, 5 years ago

Super Orxo Bros Final (Sidharth Ramesh, Nisa Balta, Jeff Ren)

File size: 355 bytes
Line 
1#include "Testclass.h"
2#include "core/CoreIncludes.h"
3#include "core/config/ConfigValueIncludes.h"
4
5namespace orxonox
6{
7    RegisterClassNoArgs(Testclass);
8
9    Testclass::Testclass()
10    {
11        RegisterObject(Testclass);
12
13        this->setConfigValues();
14    }
15
16    void Testclass::setConfigValues()
17    {
18        SetConfigValue(value_, 666);
19    }
20}
Note: See TracBrowser for help on using the repository browser.