16 lines
450 B
C#
16 lines
450 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace Continentis.MainGame
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 标记一个类为属性常量集合容器。
|
||
|
|
/// Mod 制作者可以在自己的 Mod 常量类打上这个标签,
|
||
|
|
/// 这样编辑器工具就能自动收集它们并放入下拉菜单中。
|
||
|
|
/// </summary>
|
||
|
|
[AttributeUsage(AttributeTargets.Class)]
|
||
|
|
public class GameAttributeCollectionAttribute : Attribute
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|