A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
ObjectNoImpl.cc
1#include "ObjectNoImpl.hh"
2
3#include "game/field/ObjectDirector.hh"
4
5namespace Field {
6
7ObjectNoImpl::ObjectNoImpl(const System::MapdataGeoObj &params) : ObjectBase(params) {}
8
9ObjectNoImpl::~ObjectNoImpl() = default;
10
11void ObjectNoImpl::load() {
12 ObjectDirector::Instance()->addObjectNoImpl(this);
13}
14
15} // namespace Field
Pertains to collision.