Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / activity / ForceNames.cs
@小李xl 小李xl on 21 Nov 2023 281 bytes 添加击退函数
  1.  
  2. /// <summary>
  3. /// 特殊外力名称
  4. /// </summary>
  5. public class ForceNames
  6. {
  7. /// <summary>
  8. /// 投抛外力
  9. /// </summary>
  10. public const string Throw = "throw";
  11. /// <summary>
  12. /// 击退外力
  13. /// </summary>
  14. public const string Repel = "repel";
  15. }