SuperMarioOdysseyOnline/include/game/Player/PlayerActorBase.h

17 lines
414 B
C
Raw Normal View History

2022-06-16 21:33:18 +00:00
#pragma once
/**
* @file PlayerActorBase.h
* @brief base class for PlayerActor
* Vtable loc: 1D77980
*/
#include "PlayerHackKeeper.h"
#include "al/LiveActor/LiveActor.h"
#include "game/Interfaces/IUsePlayerHack.h"
class PlayerActorBase : public al::LiveActor , public IUsePlayerHack {
public:
PlayerHackKeeper *getPlayerHackKeeper() const;
void movement(void);
int getPortNo();
};