11 lines
181 B
C++
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;
|
|
};
|