LeviLamina
Loading...
Searching...
No Matches
Vec2.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class Vec2 : public ll::math::floatN2<Vec2> {
6public:
7 using floatN2::floatN2;
8
9public:
10 // static variables
11 // NOLINTBEGIN
12 MCAPI static ::Vec2 const& MAX();
13
14 MCAPI static ::Vec2 const& MIN();
15
16 MCAPI static ::Vec2 const& ONE();
17
18 MCAPI static ::Vec2 const& UNIT_Y();
19
20 MCAPI static ::Vec2 const& ZERO();
21 // NOLINTEND
22};
Definition Vec2.h:5