mirror of
https://github.com/zeldaret/st
synced 2026-05-23 15:01:41 -04:00
c3c34ebe5a
* random docs * "match" ctor * match ctor and link miniblocks * DRDS 98% * jp differences * improve MapObjectUnkDRDS::vfunc_04 * MapObjectDoorBase 78% * fix regressions * MapObjectDoorBase 98% * MapObjectUnkDRKY 98% * MapObjectUnkDRSW 100% * fix build issues * MapObjectUnkDRTC 100% * DRCK delinks * MapObjectUnkDRCK 98%
36 lines
864 B
C++
36 lines
864 B
C++
#pragma once
|
|
|
|
#include "MapObject/MapObject.hpp"
|
|
#include "MapObject/MapObjectProfile.hpp"
|
|
#include "Unknown/Common.hpp"
|
|
#include "global.h"
|
|
#include "types.h"
|
|
|
|
class MapObjectMiniBlocks : public MapObject {
|
|
public:
|
|
/* 00 (base) */
|
|
/* 40 */ UnkSystem6_Derived2 mUnk_40;
|
|
/* 48 */ unk8 mUnk_48;
|
|
/* 49 */ unk8 mUnk_49; // pad?
|
|
/* 4A */ unk16 mUnk_4A; // pad?
|
|
/* 4C */
|
|
|
|
MapObjectMiniBlocks();
|
|
|
|
/* 00 */ virtual bool vfunc_00() override;
|
|
/* 14 */ virtual void vfunc_14() override;
|
|
/* 30 */ virtual ~MapObjectMiniBlocks() override;
|
|
};
|
|
|
|
class MapObjectProfileMiniBlocks : public MapObjectProfile_Derived1 {
|
|
public:
|
|
/* 00 (base) */
|
|
|
|
MapObjectProfileMiniBlocks();
|
|
|
|
/* 00 */ virtual MapObject *Create();
|
|
/* 1C */ virtual ~MapObjectProfileMiniBlocks() override;
|
|
|
|
static MapObjectProfileMiniBlocks *GetProfile();
|
|
};
|