openquell/components/components.go

14 lines
198 B
Go
Raw Permalink Normal View History

2024-02-06 15:26:20 +01:00
package components
// only tile entities will have those
type Tilish struct{}
type Solid struct{}
type Floor struct{}
type Collectible struct {
Hit bool
}
type Obstacle struct {
Direction int
}