MXVK Vulkan Framework 0.24.0
C++20 Vulkan rendering framework for practical 2D and 3D application development with SDL3.
Loading...
Searching...
No Matches
asteroids3d_window.hpp
Go to the documentation of this file.
1#ifndef ASTEROIDS3D_WINDOW_HPP
2#define ASTEROIDS3D_WINDOW_HPP
3
4/**
5 * @file asteroids3d_window.hpp
6 * @brief Entry point for the networked 3D Asteroids application.
7 */
8
9#include "mxvk/argz.hpp"
10
11namespace space {
12
13 /**
14 * @brief Runs the Asteroids application.
15 * @param args Parsed command-line arguments controlling the application.
16 */
17 void run_asteroids3d(const Arguments &args);
18
19} // namespace space
20
21#endif
Lightweight, header-only, template command-line argument parser.
void run_asteroids3d(const Arguments &args)
Runs the Asteroids application.