Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/SuperOrxoBros_HS18/SuperOrxoBros_HS18/test/core_plugin/Testsingleton.cc @ 12175

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

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

File size: 381 bytes
Line 
1#include "Testsingleton.h"
2#include "core/CoreIncludes.h"
3#include "core/singleton/ScopedSingletonIncludes.h"
4
5namespace orxonox
6{
7    ManageScopedSingleton(Testsingleton, ScopeID::ROOT, false);
8
9    RegisterAbstractClass(Testsingleton).inheritsFrom<Listable>();
10
11    Testsingleton::Testsingleton()
12    {
13        RegisterObject(Testsingleton);
14
15        this->value_ = 999;
16    }
17}
Note: See TracBrowser for help on using the repository browser.