OpenLoco/src/openloco/StationManager.h

17 lines
304 B
C++

#pragma once
#include "Station.h"
#include <array>
#include <cstddef>
namespace openloco::stationmgr
{
constexpr size_t max_stations = 1024;
std::array<station, max_stations>& stations();
station* get(station_id_t id);
void update();
void updateLabels();
void updateDaily();
}