2023-08-01 16:56:58 +02:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2023-05-13 11:18:01 +02:00
|
|
|
// SPDX-FileCopyrightText: 2002-2006 Marcus Geelnard
|
2023-08-03 18:11:13 +02:00
|
|
|
// SPDX-FileCopyrightText: 2006-2019 Camilla Löwy <elmindreda@glfw.org>
|
2023-05-13 11:18:01 +02:00
|
|
|
// 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.
|
|
|
|
}
|