Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / activity / ForceNames.cs
@小李xl 小李xl on 21 Nov 2023 281 bytes 添加击退函数

/// <summary>
/// 特殊外力名称
/// </summary>
public class ForceNames
{
    /// <summary>
    /// 投抛外力
    /// </summary>
    public const string Throw = "throw";
    /// <summary>
    /// 击退外力
    /// </summary>
    public const string Repel = "repel";
}