12 lines
228 B
Go
12 lines
228 B
Go
package components
|
|
|
|
import "github.com/hajimehoshi/ebiten/v2"
|
|
|
|
type Animation struct {
|
|
Show bool
|
|
Index int
|
|
Loop bool
|
|
Tiles []*ebiten.Image
|
|
Width, Height int // single sprite measurements
|
|
}
|