Adoranda/src/battle.c

13 lines
259 B
C
Raw Normal View History

2022-01-23 00:53:07 +01:00
#include <gint/display.h>
#include <gint/keyboard.h>
#include "engine.h"
#include "battle.h"
#include "util.h"
2022-01-24 15:15:12 +01:00
#include "capacite.h"
#include "player.h"
2022-01-23 00:53:07 +01:00
void create_battle(struct Player *player) {
player->stats.level++;
2022-01-24 15:15:12 +01:00
add_move(player, get_move_id(1));
2022-01-23 00:53:07 +01:00
}