mirror of https://github.com/zeldaret/botw.git
13 lines
349 B
C++
13 lines
349 B
C++
#include "KingSystem/Physics/System/physContactLayerCollisionInfo.h"
|
|
|
|
namespace ksys::phys {
|
|
|
|
ContactLayerCollisionInfo::ContactLayerCollisionInfo(ContactLayer layer) : mLayer(layer) {
|
|
// FIXME: figure out what this is
|
|
mList.initOffset(0x10);
|
|
}
|
|
|
|
ContactLayerCollisionInfo::~ContactLayerCollisionInfo() = default;
|
|
|
|
} // namespace ksys::phys
|