Browse Source

Cleanup DRLG_L3.cpp

pull/88/head
galaxyhaxz 7 years ago
parent
commit
88ea1d4463
  1. 2045
      Source/drlg_l3.cpp
  2. 14
      Source/drlg_l3.h

2045
Source/drlg_l3.cpp

File diff suppressed because it is too large Load Diff

14
Source/drlg_l3.h

@ -14,10 +14,10 @@ void __cdecl FixL3Warp();
void __cdecl FixL3HallofHeroes();
void __fastcall DRLG_L3LockRec(int x, int y);
BOOLEAN __cdecl DRLG_L3Lockout();
void __fastcall CreateL3Dungeon(int rseed, int entry);
void __fastcall CreateL3Dungeon(unsigned int rseed, int entry);
void __fastcall DRLG_L3(int entry);
void __cdecl InitL3Dungeon();
int __fastcall DRLG_L3FillRoom(int x1, int y1, int x2, int y2);
BOOL __fastcall DRLG_L3FillRoom(int x1, int y1, int x2, int y2);
void __fastcall DRLG_L3CreateBlock(int x, int y, int obs, int dir);
void __fastcall DRLG_L3FloorArea(int x1, int y1, int x2, int y2);
void __cdecl DRLG_L3FillDiags();
@ -31,13 +31,13 @@ void __cdecl DRLG_L3Pool();
BOOL __fastcall DRLG_L3SpawnEdge(int x, int y, int *totarea);
BOOL __fastcall DRLG_L3Spawn(int x, int y, int *totarea);
void __cdecl DRLG_L3PoolFix();
int __fastcall DRLG_L3PlaceMiniSet(const unsigned char *miniset, int tmin, int tmax, int cx, int cy, BOOLEAN setview, int ldir);
BOOL __fastcall DRLG_L3PlaceMiniSet(const unsigned char *miniset, int tmin, int tmax, int cx, int cy, BOOL setview, int ldir);
void __fastcall DRLG_L3PlaceRndSet(const unsigned char *miniset, int rndper);
void __cdecl DRLG_L3Wood();
BOOLEAN __fastcall WoodVertU(int i, int y);
BOOLEAN __fastcall WoodVertD(int i, int y);
BOOLEAN __fastcall WoodHorizL(int x, int j);
BOOLEAN __fastcall WoodHorizR(int x, int j);
BOOL __fastcall WoodVertU(int i, int y);
BOOL __fastcall WoodVertD(int i, int y);
BOOL __fastcall WoodHorizL(int x, int j);
BOOL __fastcall WoodHorizR(int x, int j);
void __cdecl DRLG_L3Pass3();
void __fastcall LoadL3Dungeon(char *sFileName, int vx, int vy);
void __fastcall LoadPreL3Dungeon(char *sFileName, int vx, int vy);

Loading…
Cancel
Save