brmlife/connection.h

17 lines
211 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(char around[4]);
};
#endif