14 lines
210 B
Go
Raw Normal View History

2022-09-20 23:50:01 +08:00
package models
import (
"github.com/ByteArena/box2d"
)
type Barrier struct {
X float64
Y float64
Type uint32
Boundary *Polygon2D
CollidableBody *box2d.B2Body
}