mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-29 14:43:05 +00:00
12 lines
177 B
C
12 lines
177 B
C
|
#pragma once
|
||
|
|
||
|
namespace al
|
||
|
{
|
||
|
class ExecutorActorExecuteBase;
|
||
|
|
||
|
class ActorExecuteInfo
|
||
|
{
|
||
|
public:
|
||
|
void addUpdater(al::ExecutorActorExecuteBase *);
|
||
|
};
|
||
|
};
|