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_C static ::Vec2 const& LOWEST();
13
14 MCAPI static ::Vec2 const& MAX();
15
16 MCAPI static ::Vec2 const& MIN();
17
18 MCAPI static ::Vec2 const& ONE();
19
20 MCAPI static ::Vec2 const& UNIT_Y();
21
22 MCAPI static ::Vec2 const& ZERO();
23 // NOLINTEND
24};
Definition Vec2.h:5