Adoranda/include/capacite.h

17 lines
310 B
C
Raw Normal View History

2022-01-24 15:15:12 +01:00
#pragma once
struct Move {
char *name;
int pp;
int atk;
};
2022-01-24 21:27:51 +01:00
struct Capacities {
int nbCapacities;
2022-01-24 15:15:12 +01:00
struct Move *moves[];
};
struct Move default_move();
2022-01-24 21:27:51 +01:00
struct Move get_move_id(int id);
void draw_move(int x, int y, int x2, int y2, struct Move move);
void draw_classic_move(int x, int y, struct Move move);