/
toplib
/
OpenATC
Обзор
Документация
Войти
/
toplib
/
OpenATC
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/simulation/Command.h
15 строк
272 B
toplib
feat(simulation): add taxi routing, holding patterns, flight plans, and event system
21 июн 2026, 22:25
21 июн 2026, 22:25
67231c6
Код
Авторство
О чём код?
#pragma once #include "simulation/CommandType.h" #include <string> namespace Sim { struct Command { CommandType type; std::string callsign; std::string arguments; std::string data; // extra data (e.g., controller name, fix name, runway) }; } // namespace Sim