Add handling for revised player house and room structure (v2.0) (#547)

* Add handling for revised player house and room structure (v2.0)

* Update player room load/dump file type filters
This commit is contained in:
hp3721
2021-11-19 21:53:04 -06:00
committed by GitHub
parent 8a2a562cdb
commit 8aed43a67f
29 changed files with 569 additions and 76 deletions

View File

@@ -8,10 +8,10 @@ public class RoomItemManager
{
public readonly RoomItemLayer[] Layers;
public readonly PlayerRoom Room;
public readonly IPlayerRoom Room;
private const int LayerCount = 8;
public RoomItemManager(PlayerRoom room)
public RoomItemManager(IPlayerRoom room)
{
Layers = room.GetItemLayers();
Room = room;