-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntRange.cs
More file actions
39 lines (30 loc) · 738 Bytes
/
IntRange.cs
File metadata and controls
39 lines (30 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DBDMatchmakingTracker {
/// <summary>
/// Range of integers from min (inclusive) to max (exclusive).
/// </summary>
public class IntRange {
private int min;
private int max;
public int GetMin() {
return min;
}
public void SetMin(int value) {
min = value;
}
public int GetMax() {
return max;
}
public void SetMax(int value) {
max = value;
}
public IntRange(int _min, int _max) {
SetMin(_min);
SetMax(_max);
}
}
}