package multiplayer
Type Members
-
class
MultiPlayerLevelNode extends AnimatedAbstractLevelNode
Level node representing a multiplayer level
-
case class
User(username: String, ip: String = "", port: Int = 0, isServer: Boolean) extends Product with Serializable
User class
User class
- username
the username
- ip
the ip
- port
the port
- isServer
true if the user is a server, false if it's a client
-
case class
UserWithProperties(username: StringProperty, ip: StringProperty = StringProperty(""), port: IntegerProperty = IntegerProperty(0), isServer: BooleanProperty) extends Product with Serializable
User class with properties as base fields
User class with properties as base fields
- username
the username
- ip
the ip
- port
the port
- isServer
true if the user is a server, false if it's a client