mirror of
https://github.com/zeldaret/st
synced 2026-05-23 06:54:21 -04:00
0f74fd4201
* name item 31 to 34 * name item 25 to 29 * decompile PassengerManager (95%) * started cargo manager * local attribute * passenger/cargo manager ov001 functions * name item manager functions * fix build issues & more docs on 027e0cd8 * format
36 lines
865 B
C++
36 lines
865 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();
|
|
};
|