aboutsummaryrefslogtreecommitdiff
path: root/src/objects.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/objects.hh
parentebfa80ab573b1a0ef9aec65a45fd0ae751196207 (diff)
downloadgame-f080f1e4bc9475500c0b5ef3c559c0e105290137.tar.gz
game-f080f1e4bc9475500c0b5ef3c559c0e105290137.zip
reduce clutter with struct dividing comments
Diffstat (limited to 'src/objects.hh')
-rw-r--r--src/objects.hh4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/objects.hh b/src/objects.hh
index 84801e3..39fa8aa 100644
--- a/src/objects.hh
+++ b/src/objects.hh
@@ -20,8 +20,6 @@ enum : int{
};
struct ObjectType {
- // REGULAR FUNCTIONS
- // =========================================================================
ObjectType(void) { this->setTypeID(0); }
ObjectType(int TypeID) { this->setTypeID(TypeID); }
void setTypeID(int TypeID);
@@ -61,7 +59,7 @@ struct ObjectType {
}
// DATA
- // =========================================================================
+ // =================
int TypeID;
};