コード例 #1
0
        public static SpawnRequestInfo RecvSpawnRequest(Packet p)
        {
            p.Skip(2);
            int charid = p.ReadInt();
            int mapid = p.ReadInt();

            SpawnRequestInfo sr = new SpawnRequestInfo
            {
                CharacterID = charid,
                MapID = mapid
            };

            return sr;
        }
コード例 #2
0
 public ClientSpawnOtherPlayerEventArgs(SpawnRequestInfo spawn)
 {
     this.sr = spawn;
 }
コード例 #3
0
 public ClientSendPlayerIDEventArgs(SpawnRequestInfo spawn)
 {
     this.sr = spawn;
 }
コード例 #4
0
 public ClientSpawnLoadEventArgs(SpawnRequestInfo spawn)
 {
     this.sr = spawn;
 }
コード例 #5
0
 public ClientRequestStatsLoadInfo(SpawnRequestInfo spawn)
 {
     this.sr = spawn;
 }