minor improvements

This commit is contained in:
2024-09-22 01:04:59 +10:00
parent 77603b582c
commit 3a7afe366b
3 changed files with 5 additions and 7 deletions

View File

@ -30,8 +30,6 @@ void Ball::update(float deltaTime) noexcept {
}
BallWorld::BallWorld() noexcept : balls() {}
void BallWorld::add(Ball::vec2f pos, float angle, float ballSize) noexcept {
balls.emplace_back(Ball{ pos, angle, ballSize });
}