You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
647 B
32 lines
647 B
1 year ago
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class PowerButtons
|
||
|
{
|
||
|
public List<PowerButton> DisaterForces;
|
||
|
public List<PowerButton> FireForces;
|
||
|
public List<PowerButton> LinkageForces;
|
||
|
public List<PowerButton> InteriorForces;
|
||
|
public List<PowerButton> ToolForces;
|
||
|
}
|
||
|
|
||
|
public class PowerButton
|
||
|
{
|
||
|
public string icon;
|
||
|
public string name;
|
||
|
public CreationMode mode;
|
||
|
public string label;
|
||
|
}
|
||
|
|
||
|
public class TaskDatas
|
||
|
{
|
||
|
public List<TaskData> Character;
|
||
|
public List<TaskData> Car;
|
||
|
public List<TaskData> Firemonitor;
|
||
|
}
|
||
|
public class TaskData
|
||
|
{
|
||
|
public string Task;
|
||
|
}
|