mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
16 lines
365 B
C++
16 lines
365 B
C++
#pragma once
|
|
|
|
#include "Game/LiveActor/LiveActor.hpp"
|
|
|
|
class InvisiblePolygonObj : public LiveActor {
|
|
public:
|
|
InvisiblePolygonObj(const char *);
|
|
|
|
virtual void init(const JMapInfoIter &);
|
|
virtual MtxPtr getBaseMtx() const;
|
|
|
|
void initBaseMtx();
|
|
void initCollision(const JMapInfoIter &);
|
|
|
|
TMtx34f mMatrix;
|
|
}; |