mirror of
https://github.com/RawAccelOfficial/rawaccel.git
synced 2025-05-19 07:52:02 +02:00
9 lines
100 B
C++
9 lines
100 B
C++
#pragma once
|
|
|
|
template <typename T>
|
|
struct vec2 {
|
|
T x;
|
|
T y;
|
|
};
|
|
|
|
using vec2d = vec2<double>;
|