-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1edb87d
commit 4167db6
Showing
54 changed files
with
2,461 additions
and
586 deletions.
There are no files selected for viewing
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 35 additions & 35 deletions
70
source/MainFormConstants.h → source/D2MainFormConstants.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
/* | ||
Diablo II Character Editor | ||
Copyright (C) 2021-2022 Walter Couto | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
//--------------------------------------------------------------------------- | ||
|
||
#pragma once | ||
|
||
#include "d2ce/Constants.h" | ||
#include "d2ce/ExperienceConstants.h" | ||
#include "d2ce/CharacterStatsConstants.h" | ||
|
||
constexpr COLORREF EDITED_COLOUR = 0x00FFFF00; | ||
const COLORREF NORMAL_COLOUR = GetSysColor(COLOR_WINDOW); | ||
|
||
constexpr std::uint32_t NORMAL = static_cast<std::underlying_type_t<d2ce::EnumDifficulty>>(d2ce::EnumDifficulty::Normal); | ||
constexpr std::uint32_t NIGHTMARE = static_cast<std::underlying_type_t<d2ce::EnumDifficulty>>(d2ce::EnumDifficulty::Nightmare); | ||
constexpr std::uint32_t HELL = static_cast<std::underlying_type_t<d2ce::EnumDifficulty>>(d2ce::EnumDifficulty::Hell); | ||
|
||
static const CString SettingsSection("Settings"); | ||
static const CString BackupCharacterOption("Backup Character"); | ||
//--------------------------------------------------------------------------- | ||
/* | ||
Diablo II Character Editor | ||
Copyright (C) 2021-2022 Walter Couto | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
//--------------------------------------------------------------------------- | ||
|
||
#pragma once | ||
|
||
#include "d2ce/Constants.h" | ||
#include "d2ce/ExperienceConstants.h" | ||
#include "d2ce/CharacterStatsConstants.h" | ||
|
||
constexpr COLORREF EDITED_COLOUR = 0x00FFFF00; | ||
const COLORREF NORMAL_COLOUR = GetSysColor(COLOR_WINDOW); | ||
|
||
constexpr std::uint32_t NORMAL = static_cast<std::underlying_type_t<d2ce::EnumDifficulty>>(d2ce::EnumDifficulty::Normal); | ||
constexpr std::uint32_t NIGHTMARE = static_cast<std::underlying_type_t<d2ce::EnumDifficulty>>(d2ce::EnumDifficulty::Nightmare); | ||
constexpr std::uint32_t HELL = static_cast<std::underlying_type_t<d2ce::EnumDifficulty>>(d2ce::EnumDifficulty::Hell); | ||
|
||
static const CString SettingsSection("Settings"); | ||
static const CString BackupCharacterOption("Backup Character"); | ||
//--------------------------------------------------------------------------- |
Oops, something went wrong.