aboutsummaryrefslogtreecommitdiff
path: root/logic/player.go
blob: 31aa5d017e6e42243c64d99af5f57b1e82e926ab (plain)
1
2
3
4
5
6
7
8
9
// Copyright (c) 2016 Florian Fischer. All rights reserved.
// Use of this source code is governed by a MIT license found in the LICENSE file.

package logic

type Player struct {
	Name string
	Score Score
}