mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
26 lines
531 B
C++
26 lines
531 B
C++
#pragma once
|
|
|
|
#include "Game/Screen/LayoutActor.hpp"
|
|
#include "Game/LiveActor/Nerve.hpp"
|
|
#include "JSystem/JGeometry.hpp"
|
|
|
|
class CollectCounter : public LayoutActor {
|
|
public:
|
|
CollectCounter(const char *);
|
|
|
|
virtual ~CollectCounter();
|
|
virtual void init(const JMapInfoIter &);
|
|
virtual void control();
|
|
|
|
void setCount(s32);
|
|
bool tryEndShow();
|
|
void setPosition();
|
|
|
|
TVec2f mFollowPosition; // 0x20
|
|
};
|
|
|
|
namespace NrvCollectCounter {
|
|
NERVE(CollectCounterNrvHide);
|
|
NERVE(CollectCounterNrvShow);
|
|
};
|