mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-24 18:58:54 +01:00
internal/ui: bug fix: compiie errors on mobiles and browsers
This commit is contained in:
parent
4a82a109be
commit
fa108ca717
@ -702,3 +702,9 @@ func (u *userInterfaceImpl) Input() *Input {
|
||||
func (u *userInterfaceImpl) Window() Window {
|
||||
return &nullWindow{}
|
||||
}
|
||||
|
||||
func (u *userInterfaceImpl) beginFrame() {
|
||||
}
|
||||
|
||||
func (u *userInterfaceImpl) endFrame() {
|
||||
}
|
||||
|
@ -472,3 +472,9 @@ func (u *userInterfaceImpl) ScheduleFrame() {
|
||||
u.renderRequester.RequestRenderIfNeeded()
|
||||
}
|
||||
}
|
||||
|
||||
func (u *userInterfaceImpl) beginFrame() {
|
||||
}
|
||||
|
||||
func (u *userInterfaceImpl) endFrame() {
|
||||
}
|
||||
|
@ -144,3 +144,9 @@ func (*userInterfaceImpl) Input() *Input {
|
||||
func (*userInterfaceImpl) Window() Window {
|
||||
return &nullWindow{}
|
||||
}
|
||||
|
||||
func (u *userInterfaceImpl) beginFrame() {
|
||||
}
|
||||
|
||||
func (u *userInterfaceImpl) endFrame() {
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user