diff options
author | Wim <wim@42.be> | 2018-08-06 21:47:05 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2018-08-06 21:47:05 +0200 |
commit | 51062863a5c34d81e296cf15c61140911037cf3b (patch) | |
tree | 9b5e044672486326c7a0ca8fb26430f37bf4d83c /vendor/github.com/Philipp15b/go-steam/tf2/protocol/econ.go | |
parent | 4fb4b7aa6c02a54db8ad8dd98e4d321396926c0d (diff) | |
download | matterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.tar.gz matterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.tar.bz2 matterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.zip |
Use mod vendor for vendored directory (backwards compatible)
Diffstat (limited to 'vendor/github.com/Philipp15b/go-steam/tf2/protocol/econ.go')
-rw-r--r-- | vendor/github.com/Philipp15b/go-steam/tf2/protocol/econ.go | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/vendor/github.com/Philipp15b/go-steam/tf2/protocol/econ.go b/vendor/github.com/Philipp15b/go-steam/tf2/protocol/econ.go deleted file mode 100644 index aabb2ea8..00000000 --- a/vendor/github.com/Philipp15b/go-steam/tf2/protocol/econ.go +++ /dev/null @@ -1,51 +0,0 @@ -package protocol - -import ( - "encoding/binary" - "io" -) - -type MsgGCSetItemPosition struct { - AssetId, Position uint64 -} - -func (m *MsgGCSetItemPosition) Serialize(w io.Writer) error { - return binary.Write(w, binary.LittleEndian, m) -} - -type MsgGCCraft struct { - Recipe int16 // -2 = wildcard - numItems int16 - Items []uint64 -} - -func (m *MsgGCCraft) Serialize(w io.Writer) error { - m.numItems = int16(len(m.Items)) - return binary.Write(w, binary.LittleEndian, m) -} - -type MsgGCDeleteItem struct { - ItemId uint64 -} - -func (m *MsgGCDeleteItem) Serialize(w io.Writer) error { - return binary.Write(w, binary.LittleEndian, m.ItemId) -} - -type MsgGCNameItem struct { - Tool, Target uint64 - Name string -} - -func (m *MsgGCNameItem) Serialize(w io.Writer) error { - err := binary.Write(w, binary.LittleEndian, m.Tool) - if err != nil { - return err - } - err = binary.Write(w, binary.LittleEndian, m.Target) - if err != nil { - return err - } - _, err = w.Write([]byte(m.Name)) - return err -} |