セーブ用データクラスを追加
This commit is contained in:
parent
7b4abfd6db
commit
d7803b982a
|
|
@ -0,0 +1,17 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
public class PlantLineData
|
||||
{
|
||||
public PlantLineType Type;
|
||||
public CornFieldRank Level;
|
||||
|
||||
public PlantLineData()
|
||||
{
|
||||
}
|
||||
|
||||
public PlantLineData(PlantLineType type, CornFieldRank level)
|
||||
{
|
||||
Type = type;
|
||||
Level = level;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
fileFormatVersion: 2
|
||||
guid: ccbcd3d73ff04c7c98bbf0968da4055b
|
||||
timeCreated: 1628655852
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
public class MaterialData
|
||||
{
|
||||
public int Id;
|
||||
public int Amount;
|
||||
|
||||
public MaterialData()
|
||||
{
|
||||
}
|
||||
|
||||
public MaterialData(int id, int amount)
|
||||
{
|
||||
Id = id;
|
||||
Amount = amount;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 9a9e37e2d4534ddf8f3722d5e93291e5
|
||||
timeCreated: 1628656502
|
||||
Loading…
Reference in New Issue