Make Cursor a toplevel struct

This commit is contained in:
Isaac Freund
2020-05-02 16:47:10 +02:00
parent a73343c92f
commit 97d395dbfc
2 changed files with 334 additions and 335 deletions

View File

@ -3,7 +3,7 @@ const Self = @This();
const c = @import("c.zig");
const std = @import("std");
const Cursor = @import("cursor.zig").Cursor;
const Cursor = @import("cursor.zig");
const InputManager = @import("input_manager.zig");
const Keyboard = @import("keyboard.zig").Keyboard;
const LayerSurface = @import("layer_surface.zig");