refactor: Refactorized whole project structure
This commit is contained in:
22
source/classes/squirrel/Mds.cpp
Normal file
22
source/classes/squirrel/Mds.cpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#include <CommonHeader.h>
|
||||
#include "Mds.h"
|
||||
|
||||
namespace nonut
|
||||
{
|
||||
Mds* Mds::get()
|
||||
{
|
||||
if (inst == nullptr)
|
||||
{
|
||||
inst = new Mds();
|
||||
}
|
||||
return inst;
|
||||
}
|
||||
|
||||
Mds::Mds() :
|
||||
StaticClass("Mds"),
|
||||
|
||||
METHOD_CTOR(id),
|
||||
METHOD_CTOR(name)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user