mirror of
https://github.com/PretendoNetwork/friends.git
synced 2026-08-02 16:13:00 -05:00
20 lines
395 B
Go
20 lines
395 B
Go
package globals
|
|
|
|
import (
|
|
"github.com/PretendoNetwork/nex-go"
|
|
nexproto "github.com/PretendoNetwork/nex-protocols-go"
|
|
)
|
|
|
|
type ConnectedUser struct {
|
|
PID uint32
|
|
Platform Platform
|
|
Client *nex.Client
|
|
NNAInfo *nexproto.NNAInfo
|
|
Presence *nexproto.NintendoPresence
|
|
PresenceV2 *nexproto.NintendoPresenceV2
|
|
}
|
|
|
|
func NewConnectedUser() *ConnectedUser {
|
|
return &ConnectedUser{}
|
|
}
|