mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
7 lines
85 B
C++
Executable file
7 lines
85 B
C++
Executable file
struct Board;
|
|
|
|
struct Chip {
|
|
Board &board;
|
|
void tick();
|
|
Chip(Board &board);
|
|
};
|