1
0
forked from 0ad/0ad

Compare commits

..

2 Commits

Author SHA1 Message Date
30a63187ab Remove setSelectedBiome
Since Atlas now supports biomes, defaulting the biome isn't required
anymore.
2024-09-22 14:48:13 +02:00
1b86fc70fd Allow selecting a biome in Atlas 2024-09-22 14:48:07 +02:00
4 changed files with 8 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2023 Wildfire Games.
/* Copyright (C) 2024 Wildfire Games.
* This file is part of 0 A.D.
*
* 0 A.D. is free software: you can redistribute it and/or modify
@ -29,8 +29,10 @@
#include <algorithm>
#include <ctime>
#include <random>
#include <string>
#include <wx/busyinfo.h>
#include <wx/filename.h>
#include <vector>
#define CREATE_CHECKBOX(window, parentSizer, name, description, ID) \
parentSizer->Add(new wxStaticText(window, wxID_ANY, _(name)), wxSizerFlags().Align(wxALIGN_CENTER_VERTICAL | wxALIGN_RIGHT)); \

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2022 Wildfire Games.
/* Copyright (C) 2024 Wildfire Games.
* This file is part of 0 A.D.
*
* 0 A.D. is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2023 Wildfire Games.
/* Copyright (C) 2024 Wildfire Games.
* This file is part of 0 A.D.
*
* 0 A.D. is free software: you can redistribute it and/or modify
@ -58,6 +58,8 @@
#include "simulation2/system/ParamNode.h"
#include <algorithm>
#include <string>
#include <vector>
#ifdef _MSC_VER
# pragma warning(disable: 4458) // Declaration hides class member.

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2023 Wildfire Games.
/* Copyright (C) 2024 Wildfire Games.
* This file is part of 0 A.D.
*
* 0 A.D. is free software: you can redistribute it and/or modify