summaryrefslogtreecommitdiff
path: root/zig-structs/player.zig
blob: 6cbd35436e8ed6eb1148e3901d0025608ccea4df (plain)
1
2
3
4
5
6
const std = @import("std");

pub const Player = struct {
    name: []const u8,
    age: u8,
};