CeresEngine 0.2.0
A game development framework
Loading...
Searching...
No Matches
Terrain.hpp
Go to the documentation of this file.
1//
2// CeresEngine - A game development framework
3//
4// Created by Rogiel Sulzbach.
5// Copyright (c) 2018-2023 Rogiel Sulzbach. All rights reserved.
6//
7
8#pragma once
9
11
13
14namespace CeresEngine {
15
16 class Terrain : public TResource<Terrain> {};
18
19 class VolumetricTerrain : public Terrain {
20
21 };
23
24 class HeightTerrain : public Terrain {
25 private:
28 };
30
31} // namespace CeresEngine
#define CE_FWD_RESOURCE(T)
Definition Forward.hpp:15
Definition Terrain.hpp:24
HTexture mHeight
A texture that represents the terrain height.
Definition Terrain.hpp:27
Utility template class that can be extended by Resources to automatically implement methods that are ...
Definition Resource.hpp:272
Definition Terrain.hpp:16
Definition Terrain.hpp:19
Definition Application.hpp:19