6 lines
135 B
C++
6 lines
135 B
C++
#include "Context.h"
|
|
|
|
Context::Context(Station* stations, unsigned long delta) {
|
|
this->stations = stations;
|
|
this->delta = delta;
|
|
}
|