Files
BattleBay_tool_v1.0/perks.h
komiko44240BB e8f8ce1718 v0.5.1
2024-09-21 21:20:32 +02:00

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