-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSimpleApp.hpp
41 lines (34 loc) · 868 Bytes
/
SimpleApp.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#pragma once
#include "FunctionPreCacher.hpp"
#include "PreCacherContainer.hpp"
#include <cstdint>
#include <iostream>
namespace SimpleApp
{
struct Vector2
{
float x = 0.f, y = 0.f;
Vector2 operator+(const Vector2& rhs) const
{
return Vector2{ x + rhs.x, y + rhs.y };
}
Vector2 operator-(const Vector2& rhs) const
{
return Vector2{ x - rhs.x, y - rhs.y };
}
Vector2 operator*(const Vector2& rhs) const
{
return Vector2{ x * rhs.x, y * rhs.y };
}
};
inline Vector2 f(int32_t x)
{
return Vector2{ (float)x, (float)x } * Vector2{ 1.0f, 2.0f };
}
int SaveMain();
}
inline std::ostream& operator<<(std::ostream& os, const SimpleApp::Vector2& vec)
{
os << "(" << vec.x << ", " << vec.y << ")";
return os;
}