mirror of
https://github.com/brmlab/brmlife.git
synced 2025-08-02 18:03:37 +02:00
9 lines
151 B
C
9 lines
151 B
C
#ifndef BRMLIFE__WORLD_H
|
|
#define BRMLIFE__WORLD_H
|
|
|
|
struct world {
|
|
const static int newborn_energy = 500;
|
|
const static int move_cost = 10;
|
|
};
|
|
|
|
#endif
|