mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-07 16:40:43 +08:00
update docs
This commit is contained in:
parent
550b4e86de
commit
6c6f0a48c7
@ -6,7 +6,9 @@ kotlin {
|
||||
fromPreset(presets.jvm, "jvm")
|
||||
//fromPreset(presets.mingwX64, "mingwX64")
|
||||
}
|
||||
jvm()
|
||||
jvm{
|
||||
withJava()
|
||||
}
|
||||
|
||||
/*
|
||||
mingwX64("mingwX64") {
|
||||
@ -82,6 +84,8 @@ kotlin {
|
||||
}*/
|
||||
|
||||
jvmTest {
|
||||
apply plugin: 'java'
|
||||
|
||||
}
|
||||
|
||||
all {
|
||||
@ -92,4 +96,8 @@ kotlin {
|
||||
|
||||
compileKotlinJvm {
|
||||
|
||||
}
|
||||
|
||||
compileTestJava{
|
||||
|
||||
}
|
@ -11,6 +11,8 @@ import kotlin.properties.Delegates
|
||||
|
||||
/**
|
||||
* 好友在线状态改变
|
||||
*
|
||||
* TODO 真的是在线状态改变么
|
||||
*/
|
||||
@PacketId(0x00_81u)
|
||||
class ServerFriendOnlineStatusChangedPacket(input: ByteReadPacket) : ServerPacket(input) {
|
||||
|
@ -12,4 +12,4 @@ import net.mamoe.mirai.network.protocol.tim.packet.ServerPacket
|
||||
* @author Him188moe
|
||||
*/
|
||||
@PacketId(0x00_ECu)
|
||||
class ServerLoginSuccessPacket(input: ByteReadPacket) : ServerPacket(input)
|
||||
class ServerLoginSuccessPacket(input: ByteReadPacket) : ServerPacket(input)//TODO 可能只是 login status change 的返回包
|
Loading…
Reference in New Issue
Block a user