brmlife/world.h
2011-11-27 02:34:28 +01:00

10 lines
185 B
C

#ifndef BRMLIFE__WORLD_H
#define BRMLIFE__WORLD_H
struct world {
const static int newborn_energy = 500;
const static int move_cost = 10;
const static int sun_energy = 1;
};
#endif