Files
Petari/include/Game/MapObj/MapObjConnector.hpp
2024-08-20 20:19:54 -04:00

18 lines
319 B
C++

#pragma once
#include "Game/LiveActor/LiveActor.hpp"
class MapObjConnector {
public:
MapObjConnector(LiveActor *);
void attachToUnder();
void attachToBack();
void attach(const TVec3f &);
void connect();
void connect(LiveActor *);
LiveActor* mHost; // 0x0
u32 _4;
TMtx34f _8;
};