blob: 174b7b092537a1c425d691c2a4170a68e8c7a90f (
plain)
1
2
3
4
5
6
7
|
package o1game.Server
import scala.collection.mutable.Buffer
class GameCharacter(val name: String):
private val items: Buffer[String] = Buffer.empty // TODO: Item class
// TODO: A lot of other things too
|