Sound Bakery  v0.1.0
Open-source audio middleware for games
Loading...
Searching...
No Matches
app.h
1#pragma once
2
3#include "pch.h"
4
5class editor_app final : public gluten::app
6{
7public:
8 void open_project(const std::filesystem::path& project_file);
9 void create_and_open_project(const std::filesystem::directory_entry& projectFolder);
10
11 void post_init() override;
12};
Definition app.h:6