pppi-rpg-game/program/world_builder.h

16 lines
611 B
C++
Raw 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.

// Мир и локации - создает и управляет игровым миром, включая различные локации
class WorldBuilder {
public:
// Загружает или создает новый игровой мир
void loadOrCreateWorld();
// Добавляет новую локацию в мир
void addLocation(/* параметры локации */);
// Удаляет локацию из мира
void removeLocation(int locationId);
// Получает информацию о локации
void getLocationInfo(int locationId);
};