1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-30 19:15:22 +00:00
OpenDiablo2/d2networking/d2client/d2clientconnectiontype/connectiontype.go

13 lines
363 B
Go
Raw Normal View History

package d2clientconnectiontype
// ClientConnectionType is an enum referring to types implementing
// d2server.ClientConnection and d2client.ClientConnection.
type ClientConnectionType int
//
const (
Local ClientConnectionType = iota // Local client
LANServer // Server
LANClient // Remote client
)