This commit is contained in:
Andrew Gutekanst
2020-03-02 23:36:27 -05:00
parent 82f92e2f24
commit af22707b48
302 changed files with 487 additions and 486 deletions

View File

@@ -6,8 +6,8 @@ import (
)
// MsgSysPositionObject represents the MSG_SYS_POSITION_OBJECT
type MsgSysPositionObject struct{
ObjID uint32
type MsgSysPositionObject struct {
ObjID uint32
X, Y, Z float32
}
@@ -32,4 +32,4 @@ func (m *MsgSysPositionObject) Build(bf *byteframe.ByteFrame) error {
bf.WriteFloat32(m.Y)
bf.WriteFloat32(m.Z)
return nil
}
}