mirror of https://github.com/bsnes-emu/bsnes.git
8 lines
104 B
C++
8 lines
104 B
C++
|
void Object::unused() {
|
||
|
}
|
||
|
|
||
|
Object::Object() {
|
||
|
OS::initialize();
|
||
|
object = new Object::Data(*this);
|
||
|
}
|