CeresEngine 0.2.0
A game development framework
Loading...
Searching...
No Matches
EmptyPath.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-2022 Rogiel Sulzbach. All rights reserved.
6//
7
8#pragma once
9
10#include "Edge.hpp"
11#include "Iterator.hpp"
12#include "PathVertex.hpp"
13
15
17 class EmptyPath {
18 public:
19 class Edges {
20 public:
21 [[nodiscard]] Edge generate() const;
23 void next();
24
25 private:
27
29 };
30
32 public:
35 void next();
36
37 private:
39
41 };
42
44
47 };
48
49} // namespace CeresEngine::MeshGenerator
Definition Edge.hpp:14
Empty path with zero vertices and edges.
Definition EmptyPath.hpp:17
Vertices vertices() const noexcept
Definition PathVertex.hpp:14
Definition AnyGenerator.hpp:12
constexpr size_t hash(const T &v)
Generates a hash for the provided type.
Definition Hash.hpp:25