28 lines
1007 B
Plaintext
28 lines
1007 B
Plaintext
/*
|
|
# _____ ____ ___
|
|
# | \/ ____| |___|
|
|
# | | | \ | |
|
|
#-----------------------------------------------------------------------
|
|
# Copyright 2022, tyra - https://github.com/h4570/tyra
|
|
# Licensed under Apache License 2.0
|
|
# Sandro Sobczyński <sandro.sobczynski@gmail.com>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "./engine.hpp"
|
|
#include "./debug/debug.hpp"
|
|
#include "./file/file_utils.hpp"
|
|
#include "./loaders/3d/md2_loader/md2_loader.hpp"
|
|
#include "./loaders/3d/obj_loader/obj_loader.hpp"
|
|
#include "./loaders/texture/png_loader.hpp"
|
|
#include "./packet2/packet2_tyra_utils.hpp"
|
|
#include "./physics/ray.hpp"
|
|
#include "./renderer/3d/pipeline/dynamic/dynamic_pipeline.hpp"
|
|
#include "./renderer/3d/pipeline/static/static_pipeline.hpp"
|
|
#include "./renderer/3d/pipeline/minecraft/minecraft_pipeline.hpp"
|
|
#include "./renderer/3d/mesh/dynamic/dynamic_mesh.hpp"
|
|
#include "./renderer/3d/mesh/static/static_mesh.hpp"
|
|
#include "./thread/threading.hpp"
|
|
#include "./time/timer.hpp"
|