summary refs log tree commit diff
path: root/src/trainer/logging.h
blob: 93cb595d38243451b199320b1b6247a5440571b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef LOGGING_H
#define LOGGING_H

#include "../game.h"

void log_header(FILE *stream);

void log_generation(FILE *stream, int gen, Game *game);

void log_close_pipe(void);

void log_live_update(void);

#endif