Adoranda/include/capacite.h

15 lines
188 B
C
Raw Normal View History

2022-01-24 15:15:12 +01:00
#pragma once
struct Move {
char *name;
int pp;
int atk;
};
struct Capacites {
int nbCapacites;
struct Move *moves[];
};
struct Move default_move();
struct Move get_move_id(int id);