touchgfx compilation attempt

This commit is contained in:
2025-04-03 01:59:14 +02:00
parent c30b708f92
commit dcd04e2a96
689 changed files with 122200 additions and 842 deletions

View File

@ -0,0 +1,21 @@
#ifndef MODEL_HPP
#define MODEL_HPP
class ModelListener;
class Model
{
public:
Model();
void bind(ModelListener* listener)
{
modelListener = listener;
}
void tick();
protected:
ModelListener* modelListener;
};
#endif // MODEL_HPP