This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
The-Powder-Toy/src/Controller.h
Tamás Bálint Misius 7629c98f22
Get rid of tiny callback classes, round No.1
I say round No.1 because I'm not sure if there are any left.
Hopefully there aren't.
2019-12-16 21:20:33 +01:00

13 lines
170 B
C++

#ifndef CONTROLLER_H_
#define CONTROLLER_H_
class Controller
{
private:
virtual void Exit();
virtual void Show();
virtual void Hide();
};
#endif /* CONTROLLER_H_ */