diff options
author | emkael <emkael@tlen.pl> | 2017-07-30 02:28:57 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2017-07-30 02:28:57 +0200 |
commit | 14f684cee81e45ebaea0dd0abb60c5039a7ed467 (patch) | |
tree | 2cd041e6f32f2158ceeaba2ba468597013b080b1 /Aktywator/Tournament.cs | |
parent | cfe97d223573c4792e5d42a4443c139fd8c87381 (diff) |
Loading names from MySQL tournaments generalized as a dataset
Diffstat (limited to 'Aktywator/Tournament.cs')
-rw-r--r-- | Aktywator/Tournament.cs | 4 |
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>>(); + } } } |