Some minor improvements

This commit is contained in:
G3bE 2020-02-22 20:43:30 +10:00
parent 53be5d5871
commit 5f8226f8d8
Failed to generate hash of commit
14 changed files with 18 additions and 17 deletions

6
build.zig Normal file → Executable file
View file

@ -72,9 +72,9 @@ pub fn build(b: *Builder) void
const inputMouseWheelStep = b.step("input_mouse_wheel", "Mouse wheel input");
inputMouseWheelStep.dependOn(&runInputMouseWheel.step);
const runInputMouseWheel = inputMouseWheel.run();
const inputMouseWheelStep = b.step("input_mouse_wheel", "Mouse wheel input");
inputMouseWheelStep.dependOn(&runInputMouseWheel.step);
const runInputMultitouch = inputMultitouch.run();
const inputMultitouchStep = b.step("input_multitouch", "Multitouch (duh)");
inputMultitouchStep.dependOn(&runInputMultitouch.step);
const run2DCamera = twoDCamera.run();
const twoDCameraStep = b.step("2d_camera", "Shows the functionality of a 2D camera");