9 lines
123 B
Go
9 lines
123 B
Go
package image_table
|
|
|
|
import "image/color"
|
|
|
|
type ITableRow interface {
|
|
GetCells() []any
|
|
GetBackgroundColor() color.RGBA
|
|
}
|