mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-25 12:45:17 +00:00
9 lines
263 B
C
9 lines
263 B
C
|
#pragma once
|
||
|
#include "al/LiveActor/LiveActor.h"
|
||
|
#include "sead/prim/seadSafeString.hpp"
|
||
|
|
||
|
class PlayerAnimFrameCtrl {
|
||
|
public:
|
||
|
const char *getActionName(void) const;
|
||
|
void startAction(al::LiveActor *actor, sead::SafeString const &actionName);
|
||
|
};
|