diff options
author | DavisLWebb <davislwebb@ymail.com> | 2014-02-10 19:49:00 -0500 |
---|---|---|
committer | DavisLWebb <davislwebb@ymail.com> | 2014-02-10 19:49:00 -0500 |
commit | 2087f56506887adff6ed20dc3daccd3515f10d40 (patch) | |
tree | b949932c6ed8adc48249c9bf12cd4b778e5ab82a | |
parent | d8144070fa0c1a8198b1f594c86662b0d33ba7e0 (diff) |
Refined design models
-rw-r--r-- | docs/DesignDocument.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/DesignDocument.md b/docs/DesignDocument.md index 2c5e733..43947e4 100644 --- a/docs/DesignDocument.md +++ b/docs/DesignDocument.md @@ -124,13 +124,13 @@ Server : Tournement - : This model represents the structure of a tournement. It will have several data sections to it including: The match settings, the matches contained inside of the tournement, and the registered players that are participating in the tournement. + : This model represents the structure of a tournement. It will have several data sections to it including: The match settings, the matches contained inside of the tournement, a unique id for the tournement, and the registered players that are participating in the tournement. Match - : A match will be a single set of data that contains all of the statistics of one game. + : A match will be a single set of data that contains all of the statistics of one game. This includes: players, scores, game time, the tournement that match took place in, and the date. Team - : This model will consist of a list of players for a tournement/game. The team creation process will either be pre-determined teams, or randomly assigned teams. + : This model will consist of a list of players for a tournement/game. The team creation process is chosen by the host of the tournement and will either be pre-determined teams, or randomly assigned teams. User : This model represents all types of users; hosts, players, and |