Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / manager / ActivityIdPrefix.cs
@小李xl 小李xl on 5 Mar 2023 740 bytes 生成门实例

//Activity注册类id前缀
public static class ActivityIdPrefix
{
    /// <summary>
    /// 测试单位
    /// </summary>
    public const string Test = "test";
    /// <summary>
    /// 角色
    /// </summary>
    public const string Role = "role";
    /// <summary>
    /// 敌人
    /// </summary>
    public const string Enemy = "enemy";
    /// <summary>
    /// 武器
    /// </summary>
    public const string Weapon = "weapon";
    /// <summary>
    /// 子弹
    /// </summary>
    public const string Bullet = "bullet";
    /// <summary>
    /// 弹壳
    /// </summary>
    public const string Shell = "shell";
    
    /// <summary>
    /// 其他类型
    /// </summary>
    public const string Other = "other";
}