git-subtree-dir: deps/nostalgia git-subtree-split: 9cb6bd4a32e9f39a858f72443ff5c6d40489fe22
19 lines
272 B
C++
19 lines
272 B
C++
/*
|
|
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <ox/event/signal.hpp>
|
|
|
|
#include "project.hpp"
|
|
|
|
namespace studio {
|
|
|
|
struct StudioContext {
|
|
ox::SignalHandler *ui = nullptr;
|
|
Project *project = nullptr;
|
|
};
|
|
|
|
}
|