mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-13 21:40:46 -05:00
12 lines
280 B
Diff
12 lines
280 B
Diff
90c90
|
|
< const print = ???;
|
|
---
|
|
> const print = std.debug.print;
|
|
155c155
|
|
< levelUp(glorp, reward_xp);
|
|
---
|
|
> levelUp(&glorp, reward_xp);
|
|
161c161
|
|
< fn levelUp(character_access: Character, xp: u32) void {
|
|
---
|
|
> fn levelUp(character_access: *Character, xp: u32) void {
|