mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-25 03:08:54 +01:00
internal/nintendosdk: refactoring
This commit is contained in:
parent
afbd1aebf1
commit
fd1a90411a
@ -21,12 +21,6 @@ package nintendosdk
|
|||||||
//
|
//
|
||||||
// #include <stdint.h>
|
// #include <stdint.h>
|
||||||
//
|
//
|
||||||
// struct Touch {
|
|
||||||
// int id;
|
|
||||||
// int x;
|
|
||||||
// int y;
|
|
||||||
// };
|
|
||||||
//
|
|
||||||
// // UI
|
// // UI
|
||||||
// void EbitenInitializeGame();
|
// void EbitenInitializeGame();
|
||||||
// void EbitenGetScreenSize(int* width, int* height);
|
// void EbitenGetScreenSize(int* width, int* height);
|
||||||
@ -34,12 +28,6 @@ package nintendosdk
|
|||||||
// void EbitenEndFrame();
|
// void EbitenEndFrame();
|
||||||
import "C"
|
import "C"
|
||||||
|
|
||||||
type Touch struct {
|
|
||||||
ID int
|
|
||||||
X int
|
|
||||||
Y int
|
|
||||||
}
|
|
||||||
|
|
||||||
func InitializeGame() {
|
func InitializeGame() {
|
||||||
C.EbitenInitializeGame()
|
C.EbitenInitializeGame()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user