call the overworld the overworld

Signed-off-by: Xe Iaso <me@christine.website>
This commit is contained in:
Cadey Ratio 2022-07-01 21:46:56 -04:00
parent 2fde382e01
commit f48b9a200c
3 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ fn mapgen(b: *std.build.Step) !void {
const maps = [_][2][]const u8{
[2][]const u8{"./maps/dungeon.json", "./src/maps/dungeon.zig"},
[2][]const u8{"./maps/RPGmap.json", "./src/maps/rpg.zig"},
[2][]const u8{"./maps/RPGmap.json", "./src/maps/overworld.zig"},
};
for (&maps) |map| {

View File

@ -11,7 +11,7 @@ const Direction = sh0rk.Direction;
const Point = sh0rk.Point;
const Rect = sh0rk.Rect;
const map = @import("./maps/rpg.zig");
const map = @import("./maps/overworld.zig");
var frame_count: u32 = 0;
var mara_direction: Direction = Direction.Right;