mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-24 10:48:53 +01:00
mobile: Remove viewID arg
This commit is contained in:
parent
2dd1e9c567
commit
405ad9a136
@ -33,6 +33,6 @@ import (
|
|||||||
|
|
||||||
type EventDispatcher mobile.EventDispatcher
|
type EventDispatcher mobile.EventDispatcher
|
||||||
|
|
||||||
func Start(viewID int) (EventDispatcher, error) {
|
func Start() (EventDispatcher, error) {
|
||||||
return mobile.Start(example.Update, example.ScreenWidth, example.ScreenHeight, 2, "Mobile (Ebiten Demo)", viewID)
|
return mobile.Start(example.Update, example.ScreenWidth, example.ScreenHeight, 2, "Mobile (Ebiten Demo)")
|
||||||
}
|
}
|
||||||
|
@ -40,7 +40,7 @@ type EventDispatcher interface {
|
|||||||
// Start starts the game and returns immediately.
|
// Start starts the game and returns immediately.
|
||||||
//
|
//
|
||||||
// Different from ebiten.Run, this invokes only the game loop and not the main (UI) loop.
|
// Different from ebiten.Run, this invokes only the game loop and not the main (UI) loop.
|
||||||
func Start(f func(*ebiten.Image) error, width, height, scale int, title string, viewID int) (EventDispatcher, error) {
|
func Start(f func(*ebiten.Image) error, width, height, scale int, title string) (EventDispatcher, error) {
|
||||||
chError = ebiten.RunWithoutMainLoop(f, width, height, scale, title)
|
chError = ebiten.RunWithoutMainLoop(f, width, height, scale, title)
|
||||||
return &eventDispatcher{}, nil
|
return &eventDispatcher{}, nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user