remove unnecessary whitespace and comments in room_object and sprite files

This commit is contained in:
scawful
2025-01-02 10:07:15 -05:00
parent 1e8a6cff90
commit 1f5acc66c9
5 changed files with 4 additions and 20 deletions

View File

@@ -3,7 +3,6 @@
namespace yaze {
namespace zelda3 {
ObjectOption operator|(ObjectOption lhs, ObjectOption rhs) {
return static_cast<ObjectOption>(static_cast<int>(lhs) |
static_cast<int>(rhs));
@@ -130,8 +129,5 @@ void RoomObject::DrawTile(gfx::Tile16 t, int xx, int yy,
}
}
} // namespace zelda3
} // namespace yaze

View File

@@ -201,10 +201,7 @@ class Subtype3 : public RoomObject {
}
};
} // namespace zelda3
} // namespace yaze
#endif // YAZE_APP_ZELDA3_DUNGEON_ROOM_OBJECT_H