mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
mobile/ebitenmobileview: Rename files
This commit is contained in:
parent
dc96d25457
commit
e20cbac8d8
@ -25,6 +25,8 @@ func UpdateTouchesOnAndroid(action int, id int, x, y int) {
|
||||
}
|
||||
}
|
||||
|
||||
// UpdateTouchesOnIOS is a dummy function for backward compatibility.
|
||||
// UpdateTouchesOnIOS is called from ebiten/mobile package.
|
||||
func UpdateTouchesOnIOS(phase int, ptr int64, x, y int) {
|
||||
panic("ebitenmobileview: updateTouchesOnIOSImpl must not be called on Android")
|
||||
}
|
@ -43,6 +43,8 @@ func getIDFromPtr(ptr int64) int {
|
||||
return id
|
||||
}
|
||||
|
||||
// UpdateTouchesOnAndroid is a dummy function for backward compatibility.
|
||||
// UpdateTouchesOnAndroid is called from ebiten/mobile package.
|
||||
func UpdateTouchesOnAndroid(action int, id int, x, y int) {
|
||||
panic("ebitenmobileview: updateTouchesOnAndroid must not be called on iOS")
|
||||
}
|
Loading…
Reference in New Issue
Block a user