mirror of
https://github.com/zeldaret/st
synced 2026-05-23 15:01:41 -04:00
a12d3af472
* fixed Actor_c4 hierarchy and create default derived classes for all actors * forgot public + fixed actorrupee ctor
45 lines
1007 B
C++
45 lines
1007 B
C++
//! TODO: This file was generated automatically and might contain errors
|
|
|
|
#pragma once
|
|
|
|
#include "Actor/Actor.hpp"
|
|
#include "Actor/ActorProfile.hpp"
|
|
#include "global.h"
|
|
#include "types.h"
|
|
|
|
class ActorUnkL2MT_c4 : public Actor_c4 {
|
|
public:
|
|
ActorUnkL2MT_c4(Actor *param1);
|
|
|
|
/* 00 */ virtual unk32 vfunc_00(Actor_c4_stack param1, unk32 param2) override;
|
|
/* 04 */ virtual void vfunc_04() override;
|
|
/* 08 */ virtual void vfunc_08() override;
|
|
/* 0C */ virtual void vfunc_0c(unk32 param1) override;
|
|
};
|
|
|
|
class ActorUnkL2MT : public Actor {
|
|
public:
|
|
/* 00 (base) */
|
|
/* 94 */
|
|
|
|
ActorUnkL2MT();
|
|
|
|
/* 4C */ virtual ~ActorUnkL2MT() override;
|
|
|
|
void func_ov044_0212c954(void);
|
|
void func_ov044_0212c974(void);
|
|
void func_ov044_0212c978(void);
|
|
};
|
|
|
|
class ActorProfileUnkL2MT : public ActorProfile_Derived1 {
|
|
public:
|
|
/* 00 (base) */
|
|
|
|
ActorProfileUnkL2MT();
|
|
~ActorProfileUnkL2MT();
|
|
|
|
/* 0C */ virtual Actor *Create();
|
|
|
|
static ActorProfileUnkL2MT *GetProfile();
|
|
};
|