mirror of
https://github.com/zeldaret/st
synced 2026-08-23 07:09:33 -04:00
c505bcac20
* feat: mark NORE as completed in delink * feat: cleanup some functions * refactor: remove explicit dtors of MLCK * fix: match back vfunc_6C
41 lines
772 B
C++
41 lines
772 B
C++
#pragma once
|
|
|
|
#include "Actor/Actor.hpp"
|
|
#include "Actor/ActorProfile.hpp"
|
|
#include "global.h"
|
|
#include "types.h"
|
|
|
|
enum ActorUnkFLENState_ {
|
|
ActorUnkFLENState_0 = 0,
|
|
ActorUnkFLENState_1 = 1,
|
|
ActorUnkFLENState_2 = 2,
|
|
ActorUnkFLENState_Max,
|
|
};
|
|
|
|
class ActorUnkFLEN : public Actor {
|
|
public:
|
|
/* 00 (base) */
|
|
/* 94 */ unk32 mUnk_94;
|
|
/* 98 */
|
|
|
|
ActorUnkFLEN();
|
|
|
|
/* 18 */ virtual bool vfunc_18(int param1) override;
|
|
/* 20 */ virtual void vfunc_20() override;
|
|
|
|
void SetState(ActorState state);
|
|
bool func_ov031_020f81f8();
|
|
};
|
|
|
|
class ActorProfileUnkFLEN : public ActorProfile {
|
|
public:
|
|
/* 00 (base) */
|
|
/* 3C */
|
|
|
|
ActorProfileUnkFLEN();
|
|
|
|
/* 0C */ virtual Actor *Create();
|
|
|
|
static ActorProfileUnkFLEN *GetProfile();
|
|
};
|