mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
19 lines
362 B
C++
19 lines
362 B
C++
#pragma once
|
|
|
|
#include "Game/LiveActor/LiveActor.hpp"
|
|
|
|
class CoinBox : public LiveActor {
|
|
public:
|
|
CoinBox(const char *);
|
|
|
|
virtual ~CoinBox();
|
|
virtual void init(const JMapInfoIter &);
|
|
virtual bool receiveOtherMsg(u32, HitSensor *, HitSensor *);
|
|
|
|
void exeHit();
|
|
};
|
|
|
|
namespace NrvCoinBox {
|
|
NERVE(CoinBoxNrvWait);
|
|
NERVE(CoinBoxNrvHit);
|
|
}; |