aboutsummaryrefslogtreecommitdiff
path: root/src/map.hh
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2025-06-05 12:12:39 -0300
committerfusion32 <marcopuzziello@gmail.com>2025-06-05 12:12:39 -0300
commitf080f1e4bc9475500c0b5ef3c559c0e105290137 (patch)
tree461f6a7fef0014900f5f36423a92bde964a4ae94 /src/map.hh
parentebfa80ab573b1a0ef9aec65a45fd0ae751196207 (diff)
downloadgame-f080f1e4bc9475500c0b5ef3c559c0e105290137.tar.gz
game-f080f1e4bc9475500c0b5ef3c559c0e105290137.zip
reduce clutter with struct dividing comments
Diffstat (limited to 'src/map.hh')
-rw-r--r--src/map.hh4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/map.hh b/src/map.hh
index 6db6773..eafcb1a 100644
--- a/src/map.hh
+++ b/src/map.hh
@@ -30,8 +30,6 @@ enum : int {
};
struct Object {
- // REGULAR FUNCTIONS
- // =========================================================================
constexpr Object(void) : ObjectID(0) {}
constexpr Object(uint32 ObjectID): ObjectID(ObjectID) {}
@@ -55,7 +53,7 @@ struct Object {
}
// DATA
- // =========================================================================
+ // =================
uint32 ObjectID;
};