basic layout of players

Setting up some basic structure for players and sessions
This commit is contained in:
Justin T 2019-11-27 01:18:02 -06:00
parent 4e4be5a9cf
commit b5b15984cc
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package model
import "github.com/jtieri/HabbGo/habbgo/server"
type Player struct {
session *server.Session
playerDetails *PlayerDetails
}
type PlayerDetails struct {
username string
}

View File

@ -0,0 +1 @@
package service