// Felix-Bang:Level
// へ /|
// /\7 ∠_/
// / │ / /
// │ Z _,< / /`ヽ
// │ ヽ / 〉
// Y ` / /
// イ● 、 ● ⊂⊃〈 /
// () へ | \〈
// >ー 、_ ィ │ //
// / へ / ノ<| \\
// ヽ_ノ (_/ │//
// 7 |/
// >―r ̄ ̄`ー―_
// Describe:关卡数据
// Createtime:2018/9/19
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace FBApplication
{
public class FBLevel
{
/// 名称
public string Name;
/// 卡片
public string CardImage;
/// 背景
public string Background;
/// 地图
public string Road;
/// 初始金币
public int InitScore;
/// 可放置炮塔的位置
public List Holders = new List();
/// 路径节点
public List Path = new List();
/// 回合
public List Rounds = new List();
}
}