index
:
game-of-life
master
A c++ Linux CLI implementation of John Conway's game of life
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
interfaces
/
game.hpp
blob: f9d851b27400b1e355d1c96014f9289b2e507617 (
plain
)
1
2
3
4
5
6
7
#pragma once
class
IGame
{
public
:
virtual
void
run
()
=
0
;
};