mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 03:05:16 +00:00
12 lines
No EOL
273 B
C++
12 lines
No EOL
273 B
C++
#pragma once
|
|
|
|
#include "al/LiveActor/LiveActor.h"
|
|
|
|
struct CoinStack; // stub class
|
|
|
|
class CoinStackGroup : public al::LiveActor
|
|
{
|
|
public:
|
|
void setStackAsCollected(CoinStack *stack);
|
|
void generateCoinStackGroup(al::ActorInitInfo const &, int count);
|
|
}; |