You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
479 B
24 lines
479 B
package component |
|
|
|
import ( |
|
"code.rocketnine.space/tslocum/gohan" |
|
"code.rocketnine.space/tslocum/monovania/engine" |
|
) |
|
|
|
type PositionComponent struct { |
|
X, Y float64 |
|
} |
|
|
|
var PositionComponentID = engine.Engine.NewComponentID() |
|
|
|
func (p *PositionComponent) ComponentID() gohan.ComponentID { |
|
return PositionComponentID |
|
} |
|
|
|
func Position(ctx *gohan.Context) *PositionComponent { |
|
c, ok := ctx.Component(PositionComponentID).(*PositionComponent) |
|
if !ok { |
|
return nil |
|
} |
|
return c |
|
}
|
|
|