bsnes/higan/fc/cartridge/chip/chip.hpp

9 lines
94 B
C++

struct Board;
struct Chip {
Chip(Board& board);
auto tick() -> void;
Board& board;
};