mirror of
https://github.com/genxium/DelayNoMore
synced 2024-12-26 11:48:56 +00:00
18 lines
555 B
Go
18 lines
555 B
Go
package models
|
|
|
|
import (
|
|
"github.com/ByteArena/box2d"
|
|
)
|
|
|
|
type SpeedShoe struct {
|
|
Id int32 `json:"id,omitempty"`
|
|
LocalIdInBattle int32 `json:"localIdInBattle,omitempty"`
|
|
X float64 `json:"x,omitempty"`
|
|
Y float64 `json:"y,omitempty"`
|
|
Removed bool `json:"removed,omitempty"`
|
|
Type int32 `json:"type,omitempty"`
|
|
PickupBoundary *Polygon2D `json:"-"`
|
|
CollidableBody *box2d.B2Body `json:"-"`
|
|
RemovedAtFrameId int32 `json:"-"`
|
|
}
|