tomato/src/screen.hpp

11 lines
174 B
C++
Raw Normal View History

2023-07-26 12:24:18 +02:00
#pragma once
struct Screen {
virtual ~Screen(void) = default;
// return nullptr if not next
// sets bool quit to true if exit
virtual Screen* poll(bool& quit) = 0;
};