Files
WoW-Launcher/src/Constants/GameVersion.cs
Fabian 85fceeb3f0 Update launcher to work with latest clients:
- NO dev mode anymore. A valid certificate is ALWAYS required.
- NO Arctium server connection. But do not rename things, thanks.
- NO other features than connecting to servers with valid certificates attached.
  Means: NO mod loading or dev mode. For that use our full-featured launcher at https://arctium.io
- NO binary releases.
- Only modern versions (all branches) are supported.

What you can still do:
- Launch modern game clients and connect to servers with a valid certificate attached.
- Specify custom version and cdns URLs to be able to launch older clients or data from your own CDN.
2025-12-17 20:57:02 +01:00

14 lines
268 B
C#

// Copyright (c) Arctium.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Arctium.Game.Launcher.Constants;
enum GameVersion
{
Retail,
Classic,
ClassicEra,
ClassicTitan
}