Added a specialized Vector3 serializer Fixed issues relating to the differences between header bits and data bits Fixed issues with deserializing data with mismatched sizes compared to the surrogate data Added WriteBuffer and ReadBuffer for simpler serialization and deserialization Added annotation to prevent superclass serialization
9 lines
464 B
Kotlin
9 lines
464 B
Kotlin
package net.tofvesson.networking
|
|
|
|
class MismatchedFlagException: RuntimeException {
|
|
constructor() : super()
|
|
constructor(message: String?) : super(message)
|
|
constructor(message: String?, cause: Throwable?) : super(message, cause)
|
|
constructor(cause: Throwable?) : super(cause)
|
|
constructor(message: String?, cause: Throwable?, enableSuppression: Boolean, writableStackTrace: Boolean) : super(message, cause, enableSuppression, writableStackTrace)
|
|
} |