13 lines
276 B
C#
13 lines
276 B
C#
|
|
namespace UnitBuildBuilder
|
|||
|
|
{
|
|||
|
|
public class UnitBuildBuilderData
|
|||
|
|
{
|
|||
|
|
public int id;
|
|||
|
|
public string buildingName;
|
|||
|
|
public string modelPath;
|
|||
|
|
public string prefabName;
|
|||
|
|
public bool isPrefabExist;
|
|||
|
|
public bool isChecked;
|
|||
|
|
}
|
|||
|
|
}
|