GenerationFailureReport.cs 436 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. namespace DunGen.Generation
  3. {
  4. public class GenerationFailureReport
  5. {
  6. public int MaxRetryAttempts { get; }
  7. public List<TilePlacementResult> TilePlacementResults { get; }
  8. public GenerationFailureReport(int maxRetryAttempts, List<TilePlacementResult> tilePlacementResults)
  9. {
  10. MaxRetryAttempts = maxRetryAttempts;
  11. TilePlacementResults = tilePlacementResults;
  12. }
  13. }
  14. }