openquell/components/components.go

12 lines
186 B
Go

package components
// only tile entities will have those
type Tilish struct{}
type Solid struct{}
type Floor struct{}
type Collectible struct{}
type Obstacle struct {
Direction int
}