summaryrefslogtreecommitdiff
path: root/src/config.h
blob: 2563eb90c365b0190b7521f082c8a739b61ae751 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef GENETIC_CONFIG_H
#define GENETIC_CONFIG_H

#include <stdint.h>

namespace Genetic
{
	typedef uint32_t Time;
	typedef uint32_t PhenotypeId;
};

#endif