Raito 0.1
Loading...
Searching...
No Matches
Raito.h
Go to the documentation of this file.
1/*
2MIT License
3
4Copyright (c) 2023 Víctor Falcón Zaro
5
6Permission is hereby granted, free of charge, to any person obtaining a copy
7of this software and associated documentation files (the "Software"), to deal
8in the Software without restriction, including without limitation the rights
9to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10copies of the Software, and to permit persons to whom the Software is
11furnished to do so, subject to the following conditions:
12
13The above copyright notice and this permission notice shall be included in all
14copies or substantial portions of the Software.
15
16THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22SOFTWARE.
23*/
24
25#pragma once
26// Includes for Raito apps
27#include <Raito/Core/Log.h>
29#include <Raito/Core/Assert.h>
30#include <Raito/Core/Common.h>
31#include <Raito/Core/UUID.h>
33#include <Raito/Time/Time.h>
35#include <Raito/Input/Input.h>
37// ECS
38#include <Raito/ECS/Scene.h>
39#include <Raito/ECS/Entity.h>
41
42// Math
43#include <Raito/Math/Math.h>
44
45#include <Windows.h>
46
47// Renderer
49#include <Raito/Renderer/RHI.h>
53
54// Window
55#include <Raito/Window/Window.h>
56
57// Assets
58#include <Raito/Assets/Mesh.h>
59#include <Raito/Assets/Model.h>
61#include <Raito/Assets/Assets.h>
62
63// Random
64#include <Raito/Random/Random.h>
65
66constexpr u32 c_MaxPoint = 0;
67constexpr u32 c_MaxDirectional = 1;
unsigned __int32 u32
Unsigned integer 32 bit type.
Definition BasicTypes.h:55
constexpr u32 c_MaxDirectional
Definition Raito.h:67
constexpr u32 c_MaxPoint
Definition Raito.h:66