#pragma once #include #include "station.h" class Context { public: Context(Station* stations, int stationCount, unsigned long delta, DFPlayerMini_Fast* dfPlayer); Station* stations; int stationCount; unsigned long delta; DFPlayerMini_Fast* dfPlayer; int getStationIndex(const Station* station) const; bool isPlaying() const; };