summaryrefslogtreecommitdiff
path: root/Aktywator/Tournament.cs
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-07-30 02:28:57 +0200
committeremkael <emkael@tlen.pl>2017-07-30 02:28:57 +0200
commit14f684cee81e45ebaea0dd0abb60c5039a7ed467 (patch)
tree2cd041e6f32f2158ceeaba2ba468597013b080b1 /Aktywator/Tournament.cs
parentcfe97d223573c4792e5d42a4443c139fd8c87381 (diff)
Loading names from MySQL tournaments generalized as a dataset
Diffstat (limited to 'Aktywator/Tournament.cs')
-rw-r--r--Aktywator/Tournament.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Aktywator/Tournament.cs b/Aktywator/Tournament.cs
index fdeb323..70fe268 100644
--- a/Aktywator/Tournament.cs
+++ b/Aktywator/Tournament.cs
@@ -32,5 +32,9 @@ namespace Aktywator
abstract internal string getTypeLabel();
+ virtual internal Dictionary<int, List<string>> getNameList()
+ {
+ return new Dictionary<int, List<string>>();
+ }
}
}