aboutsummaryrefslogtreecommitdiff
path: root/src/actions.zig
blob: 431a6d015201b3544dd48ae6986fd3a44d0523dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
const std = @import("std");

pub const Action = enum {
    illegal,
    tick,
    exit,
    move_up,
    move_down,
    move_left,
    move_right,
    down_stair,
    up_stair,
};