comment pass

This commit is contained in:
2022-12-29 16:16:49 +01:00
parent 643e03192a
commit ff01a700bd
75 changed files with 634 additions and 65 deletions

View File

@@ -1,9 +1,15 @@
namespace EscapeRoomEngine.Engine.Runtime.Utilities
{
/// <summary>
/// This struct represents an integer range.
/// </summary>
public struct Range
{
public int min, max;
/// <summary>
/// The length of the range, excluding the maximum value.
/// </summary>
public int Length => max - min;
public Range(int min, int max)
@@ -12,6 +18,9 @@
this.max = max;
}
/// <summary>
/// Create an array of every value in this range.
/// </summary>
public int[] ToArray(bool includeMax = false)
{
var count = includeMax ? Length + 1 : Length;