aboutsummaryrefslogtreecommitdiffstats
path: root/include/vec2.hpp
blob: dcd4b935d2c196aed8b835afe117a0238fcad743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef VEC2_HPP
#define VEC2_HPP

struct Vec2 {
    float x, y;

    auto& operator+=(const Vec2& o) noexcept {
        x += o.x;
        y += o.y;
        return *this;
    }
};

#endif // VEC2_HPP