Last change
on this file since 12227 was
12177,
checked in by siramesh, 6 years ago
|
Super Orxo Bros Final (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 | |
---|
5 | namespace 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.