Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / room / DungeonCheckState.cs
  1.  
  2. /// <summary>
  3. /// 地牢房间检查结果
  4. /// </summary>
  5. public class DungeonCheckState
  6. {
  7. /// <summary>
  8. /// 是否存在异常
  9. /// </summary>
  10. public bool HasError;
  11. /// <summary>
  12. /// 异常消息
  13. /// </summary>
  14. public string ErrorMessage;
  15.  
  16. public DungeonCheckState(bool hasError, string errorMessage)
  17. {
  18. HasError = hasError;
  19. ErrorMessage = errorMessage;
  20. }
  21. }