Clarify turnip times

This commit is contained in:
Kurt
2020-04-12 20:32:41 -07:00
parent 28e4e76d3f
commit 0fbae15dd6
2 changed files with 22 additions and 14 deletions

View File

@@ -9,25 +9,25 @@ public class TurnipStonk
public uint BuyPrice { get; set; }
public uint SellSunday1 { get; set; }
public uint SellSunday2 { get; set; }
public uint SellSundayAM { get; set; }
public uint SellSundayPM { get; set; }
public uint SellMonday1 { get; set; }
public uint SellMonday2 { get; set; }
public uint SellMondayAM { get; set; }
public uint SellMondayPM { get; set; }
public uint SellTuesday1 { get; set; }
public uint SellTuesday2 { get; set; }
public uint SellTuesdayAM { get; set; }
public uint SellTuesdayPM { get; set; }
public uint SellWednesday1 { get; set; }
public uint SellWednesday2 { get; set; }
public uint SellWednesdayAM { get; set; }
public uint SellWednesdayPM { get; set; }
public uint SellThursday1 { get; set; }
public uint SellThursday2 { get; set; }
public uint SellThursdayAM { get; set; }
public uint SellThursdayPM { get; set; }
public uint SellFriday1 { get; set; }
public uint SellFriday2 { get; set; }
public uint SellFridayAM { get; set; }
public uint SellFridayPM { get; set; }
public uint SellSaturday1 { get; set; }
public uint SellSaturday2 { get; set; }
public uint SellSaturdayAM { get; set; }
public uint SellSaturdayPM { get; set; }
}
}

View File

@@ -40,5 +40,13 @@ public void TerrainTileMarshal()
var bytes = obj.ToBytesClass();
bytes.Length.Should().Be(TerrainTile.SIZE);
}
[Fact]
public void TurnipMarshal()
{
var obj = new TurnipStonk();
var bytes = obj.ToBytesClass();
bytes.Length.Should().Be(TurnipStonk.SIZE);
}
}
}