mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-09 19:40:48 -05:00
12 lines
280 B
Diff
12 lines
280 B
Diff
96c96
|
|
< const print = ???;
|
|
---
|
|
> const print = std.debug.print;
|
|
152c152
|
|
< levelUp(glorp, reward_xp);
|
|
---
|
|
> levelUp(&glorp, reward_xp);
|
|
157c157
|
|
< fn levelUp(character_access: Character, xp: u32) void {
|
|
---
|
|
> fn levelUp(character_access: *Character, xp: u32) void {
|