Files
st/include/Actor/ActorUnkNORE.hpp
T
Alessevan c505bcac20 Cleanup some actors of ov031 (#131)
* feat: mark NORE as completed in delink

* feat: cleanup some functions

* refactor: remove explicit dtors of MLCK

* fix: match back vfunc_6C
2026-08-12 22:41:36 +02:00

28 lines
472 B
C++

#pragma once
#include "Actor/Actor.hpp"
#include "Actor/ActorProfile.hpp"
#include "global.h"
#include "types.h"
class ActorUnkNORE : public Actor {
public:
/* 00 (base) */
/* 94 */
ActorUnkNORE();
/* 18 */ virtual bool vfunc_18(unk32 param1) override;
};
class ActorProfileUnkNORE : public ActorProfile {
public:
/* 00 (base) */
ActorProfileUnkNORE();
/* 0C */ virtual Actor *Create();
static ActorProfileUnkNORE *GetProfile();
};