Physics Simulation & Visualization Tool 0.1
A C++ physics simulation engine with real-time 3D visualization
Loading...
Searching...
No Matches
ScenePresets.h
Go to the documentation of this file.
1#pragma once
2
3#include <span>
4
5class SceneManager;
6
7namespace ScenePresets {
8
9using GenerateFn = void (*)(SceneManager&);
10
12 const char* category;
13 const char* name;
14 const char* description;
16};
17
18std::span<const PresetDescriptor> all();
19
20}
std::span< const PresetDescriptor > all()
void(*)(SceneManager &) GenerateFn
Definition ScenePresets.h:9