mirror of
https://github.com/komiko44240BB/BattleBay_tool_v1.0.git
synced 2026-01-18 16:27:29 +01:00
13 lines
284 B
C
13 lines
284 B
C
#ifndef READTRAINING_H
|
|
#define READTRAINING_H
|
|
|
|
struct Training {
|
|
unsigned int size;
|
|
char** type;
|
|
float* value;
|
|
};
|
|
struct Training* createTraining(unsigned int training_lvl);
|
|
struct Training* readTraining(char* object_name);
|
|
void deleteTraining(struct Training* t);
|
|
#endif
|