mirror of
https://github.com/brmlab/brmlife.git
synced 2025-08-02 18:03:37 +02:00
17 lines
224 B
C++
17 lines
224 B
C++
#ifndef BRMLIFE__CONNECTION_H
|
|
#define BRMLIFE__CONNECTION_H
|
|
|
|
#include <cstdio>
|
|
|
|
#include "map.h"
|
|
|
|
class connection {
|
|
public:
|
|
int fd;
|
|
|
|
connection(int fd_) : fd(fd_) {}
|
|
|
|
void senses(int tick_id, char around[4]);
|
|
};
|
|
|
|
#endif
|