mirror of
https://github.com/Anime-Game-Servers/anime-game-multi-proto.git
synced 2024-11-26 22:10:20 +00:00
[GI/Proto] Added some transpoint related packets
This commit is contained in:
parent
854dfa7d47
commit
a816fff713
@ -0,0 +1,13 @@
|
||||
package org.anime_game_servers.multi_proto.gi.data.scene
|
||||
|
||||
import org.anime_game_servers.core.base.Version.GI_CB1
|
||||
import org.anime_game_servers.core.base.annotations.AddedIn
|
||||
import org.anime_game_servers.core.base.annotations.proto.CommandType.*
|
||||
import org.anime_game_servers.core.base.annotations.proto.ProtoCommand
|
||||
|
||||
@AddedIn(GI_CB1)
|
||||
@ProtoCommand(REQUEST)
|
||||
internal interface SceneTransToPointReq {
|
||||
var pointId: Int
|
||||
var sceneId: Int
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package org.anime_game_servers.multi_proto.gi.data.scene
|
||||
|
||||
import org.anime_game_servers.core.base.Version.GI_CB1
|
||||
import org.anime_game_servers.core.base.annotations.AddedIn
|
||||
import org.anime_game_servers.core.base.annotations.proto.CommandType.*
|
||||
import org.anime_game_servers.core.base.annotations.proto.ProtoCommand
|
||||
|
||||
@AddedIn(GI_CB1)
|
||||
@ProtoCommand(RESPONSE)
|
||||
internal interface SceneTransToPointRsp {
|
||||
var pointId: Int
|
||||
var retcode: Int
|
||||
var sceneId: Int
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package org.anime_game_servers.multi_proto.gi.data.scene
|
||||
|
||||
import org.anime_game_servers.core.base.Version.GI_CB1
|
||||
import org.anime_game_servers.core.base.annotations.AddedIn
|
||||
import org.anime_game_servers.core.base.annotations.proto.CommandType.*
|
||||
import org.anime_game_servers.core.base.annotations.proto.ProtoCommand
|
||||
|
||||
@AddedIn(GI_CB1)
|
||||
@ProtoCommand(REQUEST)
|
||||
internal interface UnlockTransPointReq {
|
||||
var pointId: Int
|
||||
var sceneId: Int
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package org.anime_game_servers.multi_proto.gi.data.scene
|
||||
|
||||
import org.anime_game_servers.core.base.Version.GI_CB1
|
||||
import org.anime_game_servers.core.base.annotations.AddedIn
|
||||
import org.anime_game_servers.core.base.annotations.proto.CommandType.*
|
||||
import org.anime_game_servers.core.base.annotations.proto.ProtoCommand
|
||||
|
||||
@AddedIn(GI_CB1)
|
||||
@ProtoCommand(RESPONSE)
|
||||
internal interface UnlockTransPointRsp {
|
||||
var retcode: Int
|
||||
}
|
Loading…
Reference in New Issue
Block a user