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