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
28 lines
472 B
C++
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();
|
|
};
|