Stash bunch of broken generated test with shitty broken mocking
This commit is contained in:
15
game/mock/raylib.go
Normal file
15
game/mock/raylib.go
Normal file
@ -0,0 +1,15 @@
|
||||
package mock
|
||||
|
||||
import (
|
||||
rl "github.com/gen2brain/raylib-go/raylib"
|
||||
)
|
||||
|
||||
var (
|
||||
IsKeyPressed func(key int32) bool
|
||||
IsKeyDown func(key int32) bool
|
||||
IsMouseButtonPressed func(button int32) bool
|
||||
GetMousePosition func() rl.Vector2
|
||||
GetMouseRay func(mousePos rl.Vector2, camera rl.Camera3D) rl.Ray
|
||||
GetMouseWheelMove func() float32
|
||||
GetCharPressed func() rune
|
||||
)
|
Reference in New Issue
Block a user