Files
questlang/examples/main_modular.ql

28 lines
610 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
квест МодульныйПример;
цель "Пример использования модулей в QuestLang";
импорт Локации из "./locations.ql";
граф {
узлы {
старт: {
тип: начальный;
описание: "Вы стоите на развилке";
переходы: [выбор];
}
выбор: {
тип: действие;
описание: "Куда пойти?";
варианты: [
("В лес", @Локации.лес),
("На гору", @Локации.гора)
];
}
}
начало: старт;
}
конец;