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
643 B
27 lines
643 B
using UnityEngine; |
|
using System.Collections; |
|
using System.Collections.Generic; |
|
using System; |
|
using System.Xml.Serialization; |
|
namespace HelpXHSxml |
|
{ |
|
/// <summary> |
|
/// 消防栓数据 |
|
/// </summary> |
|
public class BaseDataAttri |
|
{ |
|
public string Name = ""; |
|
public int CengID = 0; |
|
public BuildType buidType = BuildType.TypeA; |
|
public Vector3 position = Vector3.zero; |
|
public Vector3 rotation = Vector3.zero; |
|
public Vector3 scale = new Vector3(1, 1, 1); |
|
} |
|
|
|
public class RootRecordItem |
|
{ |
|
public List<BaseDataAttri> BaseList = new List<BaseDataAttri>(); |
|
} |
|
|
|
|
|
}
|
|
|