mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2025-02-09 09:24:43 +01:00
15 lines
416 B
Go
15 lines
416 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
|
|
|
|
func platformInit() error {
|
|
panic("goglfw: platformInit is not implemented yet")
|
|
}
|
|
|
|
func platformTerminate() error {
|
|
panic("goglfw: platformTerminate is not implemented yet")
|
|
}
|