buenzliai/main/context.h
2024-05-17 16:20:45 +02:00

11 lines
181 B
C++

#pragma once
#include <Arduino.h>
#include "station.h"
class Context {
public:
Context(Station* stations, unsigned long delta);
Station* stations;
unsigned long delta;
};