DictatorManager/inc/basetech.h

19 lines
389 B
C

#ifndef BASETECH_H
#define BASETECH_H
#include "../inc/dictatorship.h"
const Technology t_nuclear = {"nuclear", 0};
const Technology t_guns = {"guns", 40};
const Technology t_planes = {"planes", 20};
const Technology t_explosive = {"explosive", 30};
const Technology basetechs[TECHS_AMOUNT] = {
{"nuclear", 0},
{"guns", 40},
{"planes", 20},
{"explosive", 30}
};
#endif