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.
27 lines
563 B
27 lines
563 B
1 year ago
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
public class WaterSourceData
|
||
|
{
|
||
|
public string ImageUrl;
|
||
|
public List<SourceData> Sources { get; set; }
|
||
|
}
|
||
|
public class SourceData
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 原始名称
|
||
|
/// </summary>
|
||
|
public string OriginaName { get; set; }
|
||
|
/// <summary>
|
||
|
/// Id
|
||
|
/// </summary>
|
||
|
public string Id { get; set; }
|
||
|
/// <summary>
|
||
|
/// 位置
|
||
|
/// </summary>
|
||
|
public Vector3 Position { get; set; }
|
||
|
/// <summary>
|
||
|
/// 信息
|
||
|
/// </summary>
|
||
|
public string Info { get; set; }
|
||
|
}
|