buenzliai/main/context.h

12 lines
181 B
C
Raw Normal View History

2024-05-17 13:37:03 +00:00
#pragma once
#include <Arduino.h>
#include "station.h"
class Context {
public:
Context(Station* stations, unsigned long delta);
Station* stations;
unsigned long delta;
2024-05-17 13:37:03 +00:00
};