alchemyst/engine/items/carried.go
2019-11-13 18:55:11 +03:00

27 lines
458 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package items
import "lab.zaar.be/thefish/alchemyst-go/engine/ecs"
type CarriedFace interface {
Drop()
Pickup()
}
type Carried struct {
Mass int //масса в граммах
Bulk int //внешний размер, см3
}
func (c *Carried) Type() string {
return ecs.CarriedComponent
}
func (c *Carried) Pickup() {}
func (c *Carried) Drop() {}
func (c *Carried) GetMass() int {
return c.Mass
}
func (c *Carried) GetBulk() int {
return c.Bulk
}