Skip to content

Commit 27db159

Browse files
authored
Already tested functions in a new feature I'm doing: (#43)
void RepairWoodBridgeAt(CellStruct const& cell) { JMP_THIS(0x570050); } void RepairConcreteBridgeAt(CellStruct const& cell) { JMP_THIS(0x573540); } void DestroyWoodBridgeAt(CellStruct const& cell) { JMP_THIS(0x574C20); } void DestroyConcreteBridgeAt(CellStruct const& cell) { JMP_THIS(0x574000); }
1 parent 389fe6a commit 27db159

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

MapClass.h

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,18 @@ class NOVTABLE MapClass : public GScreenClass
528528
void RecalculateSubZones(CellStruct const& cell)
529529
{ JMP_THIS(0x584550); }
530530

531+
void RepairWoodBridgeAt(CellStruct const& cell)
532+
{ JMP_THIS(0x570050); }
533+
534+
void RepairConcreteBridgeAt(CellStruct const& cell)
535+
{ JMP_THIS(0x573540); }
536+
537+
void DestroyWoodBridgeAt(CellStruct const& cell)
538+
{ JMP_THIS(0x574C20); }
539+
540+
void DestroyConcreteBridgeAt(CellStruct const& cell)
541+
{ JMP_THIS(0x574000); }
542+
531543

532544
protected:
533545
//Constructor

0 commit comments

Comments
 (0)