-
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Archive/ArchiveEntry/ArchiveDir headers no longer include eachother - ColRGBA moved to its own minimal header - Moved various class-embedded structs/enums out that require forward declaring (still more to do here) - Moved various classes from headers into source files in the cases where they were only used within that source file (probably missed a bunch of these) - Added CommonFwd.h to Main.h, which forward declares a bunch of commonly used classes etc. - Reworked Property/PropertyList source files to make Property.h and PropertyList.h as lightweight as possible
- Loading branch information
1 parent
a24a0b8
commit b586eb8
Showing
328 changed files
with
4,742 additions
and
4,145 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#pragma once | ||
|
||
// Forward declarations for commonly used classes/structs/etc. | ||
|
||
namespace slade | ||
{ | ||
// Archive | ||
class Archive; | ||
class ArchiveDir; | ||
class ArchiveEntry; | ||
|
||
// Graphics | ||
class Palette; | ||
|
||
// SLADEMap | ||
class MapLine; | ||
class MapObject; | ||
class MapSector; | ||
class MapSide; | ||
class MapThing; | ||
class MapVertex; | ||
class SLADEMap; | ||
|
||
// Utility | ||
class ParseTreeNode; | ||
struct ColRGBA; | ||
} // namespace slade |
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
Oops, something went wrong.