mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
14 lines
322 B
C++
14 lines
322 B
C++
#pragma once
|
|
|
|
#include "Game/LiveActor/LiveActor.hpp"
|
|
|
|
class LargeChainParts : public LiveActor {
|
|
public:
|
|
LargeChainParts(const char *pName = "でかい鎖パーツ");
|
|
|
|
virtual ~LargeChainParts();
|
|
virtual void kill();
|
|
|
|
void breakChainParts();
|
|
void initChainParts(TVec3f *, TVec3f *, TVec3f *, bool);
|
|
}; |