summaryrefslogtreecommitdiff
path: root/Aktywator/Tournament.cs
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-07-30 03:39:44 +0200
committeremkael <emkael@tlen.pl>2017-07-30 13:47:43 +0200
commit618dad37ac9fa986facdcc21c1faa277f760dcb2 (patch)
tree38d6bc647bee9e060fd0de631bf955e26da9f47e /Aktywator/Tournament.cs
parenta8861edf16f737bab55748f4041805b43b2d1408 (diff)
Data retrieval from RRB tournament files
Diffstat (limited to 'Aktywator/Tournament.cs')
-rw-r--r--Aktywator/Tournament.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Aktywator/Tournament.cs b/Aktywator/Tournament.cs
index 70fe268..85a2666 100644
--- a/Aktywator/Tournament.cs
+++ b/Aktywator/Tournament.cs
@@ -8,6 +8,7 @@ namespace Aktywator
{
public const int TYPE_PARY = 1;
public const int TYPE_TEAMY = 2;
+ public const int TYPE_RRB = 3;
public const int TYPE_UNKNOWN = 0;
protected string _name;
@@ -16,7 +17,7 @@ namespace Aktywator
get { return _name; }
}
- protected int _type; // 0-unknown, 1-Pary, 2-Teamy
+ protected int _type = Tournament.TYPE_UNKNOWN; // 0-unknown, 1-Pary, 2-Teamy, 3-RRB
public int type
{
get { return _type; }
@@ -36,5 +37,6 @@ namespace Aktywator
{
return new Dictionary<int, List<string>>();
}
+
}
}