openquell/components/components.go

12 lines
186 B
Go
Raw 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{}
2024-02-07 18:01:58 +01:00
type Collectible struct{}
type Obstacle struct {
Direction int
}