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.
13 lines
336 B
13 lines
336 B
3 years ago
|
using UnityEngine;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 表示全局共享的组织机构信息。
|
||
|
/// </summary>
|
||
|
public static class GlobalDeptInfos
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 表示所有的组织机构信息,按行排列。
|
||
|
/// </summary>
|
||
|
public static List<DeptInfo> DeptInfos = new List<DeptInfo>();
|
||
|
}
|