Gabriel Tofvesson 2af938169c Added specialized Vector3 as an example
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
2018-07-27 19:44:52 +02:00

3 lines
137 B
Kotlin

package net.tofvesson.support
operator fun Pair<Int, Int>.plus(other: Pair<Int, Int>) = Pair(first + other.first, second + other.second)