mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-10 19:16:45 -04:00
d_magma minor work
This commit is contained in:
@@ -55,6 +55,14 @@ public:
|
||||
dMagma_ball_c** create(cXyz&, cXyz&, s16, u8, int);
|
||||
void remove();
|
||||
|
||||
dMagma_floor_c* getNext() { return mpNext; }
|
||||
void setNext(dMagma_floor_c* v) { mpNext = v; }
|
||||
dMagma_ball_c** getBall() { return mpBalls; }
|
||||
s32 getBallNum() { return mBallNum; }
|
||||
cXyz& getPos() { return mPos; }
|
||||
f32 getScaleX() { return mScaleX; }
|
||||
f32 getScaleZ() { return mScaleZ; }
|
||||
|
||||
/* 0x00 */ dMagma_ball_c** mpBalls;
|
||||
/* 0x04 */ u8 mBallNum;
|
||||
/* 0x05 */ u8 mPathNo;
|
||||
@@ -71,6 +79,7 @@ public:
|
||||
class dMagma_room_c {
|
||||
public:
|
||||
void newFloor(dMagma_floor_c*);
|
||||
dMagma_floor_c* getFloor() { return mpFirst; }
|
||||
void deleteFloor();
|
||||
|
||||
dMagma_room_c();
|
||||
@@ -90,6 +99,10 @@ public:
|
||||
virtual void draw();
|
||||
virtual ~dMagma_packet_c();
|
||||
|
||||
static GXTexObj& getKuroTexObj() { return mKuroTexObj; }
|
||||
static GXTexObj& getColTexObj() { return mColTexObj; }
|
||||
static Mtx& getKuroMtx() { return mKuroMtx; }
|
||||
|
||||
static GXTexObj mKuroTexObj;
|
||||
static Mtx mKuroMtx;
|
||||
static GXTexObj mColTexObj;
|
||||
|
||||
+1
-1
@@ -65,7 +65,7 @@ public:
|
||||
dMap_RoomInfo_c();
|
||||
~dMap_RoomInfo_c();
|
||||
u32 getRoomDspFloorNo(u8, int);
|
||||
void init(dMap_RoomInfo_c*, int);
|
||||
dMap_RoomInfo_c* init(dMap_RoomInfo_c*, int);
|
||||
void getRoomImage(int, u8, int, ResTIMG**, ResTIMG**, map_dt_c**, stage_map_info_class**, u8*);
|
||||
void makeRoomDspFloorNoTbl(int);
|
||||
u32 roomEntryRoom(int, u8, int, u8, dMap_RoomInfo_c*, s16, s16, f32);
|
||||
|
||||
Reference in New Issue
Block a user