mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
d9acc57997
This change updates the copyright comment to respect the original GLFW source comments.
23 lines
496 B
Go
23 lines
496 B
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-FileCopyrightText: 2002-2006 Marcus Geelnard
|
|
// SPDX-FileCopyrightText: 2006-2019 Camilla Löwy <elmindreda@glfw.org>
|
|
// SPDX-FileCopyrightText: 2023 The Ebitengine Authors
|
|
|
|
package goglfw
|
|
|
|
type platformWindowState struct {
|
|
// TODO: Implement this.
|
|
}
|
|
|
|
type platformMonitorState struct {
|
|
// TODO: Implement this.
|
|
}
|
|
|
|
type platformCursorState struct {
|
|
// TODO: Implement this.
|
|
}
|
|
|
|
type platformLibraryWindowState struct {
|
|
// TODO: Implement this.
|
|
}
|