swf-go/tag/DefineShape3.go

18 lines
379 B
Go

package tag
import (
"git.gammaspectra.live/WeebDataHoarder/swf-go/subtypes"
"git.gammaspectra.live/WeebDataHoarder/swf-go/types"
)
type DefineShape3 struct {
_ struct{} `swfFlags:"root,align"`
ShapeId uint16
ShapeBounds types.RECT
Shapes subtypes.SHAPEWITHSTYLE `swfFlags:"Shape3"`
}
func (t *DefineShape3) Code() Code {
return RecordDefineShape3
}