ebiten: remove unused constants

This commit is contained in:
Hajime Hoshi 2022-02-10 21:12:30 +09:00
parent f1987cae10
commit 8246650c6f

View File

@ -21,12 +21,6 @@ import (
"github.com/hajimehoshi/ebiten/v2/internal/ui"
)
const (
maxInt = int(^uint(0) >> 1)
minInt = -maxInt - 1
invalidPos = minInt
)
// IsWindowDecorated reports whether the window is decorated.
//
// IsWindowDecorated is concurrent-safe.