Files
galaxy-game/game/internal/bitmap/export_test.go
T
Ilia Denisov 9ade76e21d fs storage
2026-03-13 21:07:23 +02:00

10 lines
132 B
Go

package bitmap
import "slices"
func (p Bitmap) value() []uint32 {
return slices.Clone(p.bitVector)
}
var Value = (Bitmap).value