This commit is contained in:
nuknal
2024-08-22 16:32:27 +08:00
parent ca3e91b1d8
commit 6f2cfa797a
9 changed files with 300 additions and 305 deletions

View File

@@ -15,10 +15,12 @@ type auxT struct {
Row int
}
func NewImageTime() *ImageTime {
return &ImageTime{
func NewImageTime(aps []*AuxPlatform) *ImageTime {
it := &ImageTime{
auxT: make([]*auxT, 0),
}
it.Extract(aps)
return it
}
func (it *ImageTime) Extract(aps []*AuxPlatform) {