components from nout

This commit is contained in:
rendo 2026-03-10 12:57:52 +05:00
commit 57e9b91c4c

12
src/components.h Normal file
View file

@ -0,0 +1,12 @@
class IComponent {
public:
virtual ~IComponent() {}
virtual void process() = 0;
};
class Pacman : IComponent {
public:
virtual void process() {
}
};