buenzliai/main/context.cpp

7 lines
135 B
C++
Raw Normal View History

2024-05-17 13:37:03 +00:00
#include "Context.h"
Context::Context(Station* stations, unsigned long delta) {
this->stations = stations;
this->delta = delta;
}