mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 07:35:40 +00:00
8cf35a1f97
Extract operation types from package ui into package op. Signed-off-by: Elias Naur <mail@eliasnaur.com>
17 lines
282 B
Go
17 lines
282 B
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
package ui
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// Config define the essential properties of
|
|
// the environment.
|
|
type Config interface {
|
|
// Now returns the current animation time.
|
|
Now() time.Time
|
|
// Px converts a Value to pixels.
|
|
Px(v Value) int
|
|
}
|