mirror of
https://github.com/komiko44240BB/BattleBay_tool_v1.0.git
synced 2026-01-18 16:27:29 +01:00
22 lines
438 B
C
22 lines
438 B
C
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
#include<string.h>
|
|
#include<stdbool.h>
|
|
#ifndef PERKS_H
|
|
#define PERKS_H
|
|
|
|
|
|
struct Perk {
|
|
bool is_event;
|
|
unsigned int first_boost_value;
|
|
char* first_boost_type;
|
|
unsigned int second_boost_value;
|
|
char* second_boost_type;
|
|
};
|
|
|
|
struct Perk* createPerk(char* first_boost_type,char* second_boost_type, int first_boost_value,int second_boost_value);
|
|
|
|
void addPerks(struct Object* o);
|
|
|
|
#endif
|