Domain.GameObserver.Join C# (CSharp) Method

Join() public method

public Join ( int playerId, long userId, string userName ) : void
playerId int
userId long
userName string
return void
        public void Join(int playerId, long userId, string userName)
        {
            var payload = new IGameObserver_PayloadTable.Join_Invoke { playerId = playerId, userId = userId, userName = userName };
            Notify(payload);
        }