AppleWin/source/linux/context.h
Andrea Odetti 11c44233b4 Revisit initialisation to drive it all from the FrameBase.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2021-03-27 18:48:05 +00:00

14 lines
224 B
C++

#pragma once
#include <memory>
class FrameBase;
void SetFrame(const std::shared_ptr<FrameBase> & frame);
class Initialisation
{
public:
Initialisation(const std::shared_ptr<FrameBase> & frame);
~Initialisation();
};