AppleWin/source/Interface.h
Andrea Odetti 7d6439fefd Introduce a LinuxFrame.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2020-12-27 20:25:42 +00:00

15 lines
494 B
C

#pragma once
// an AppleWin frontend must provide the implementation of these 2 methods
//
// once this is done,
// the core emulator files (i.e. almost all the .cpp directly in Source)
// can compile, link and run properly
// this does not include the main event loop which is left in the arch specific area
// nor the actual rendering of the video buffer to screen
#include "Configuration/IPropertySheet.h"
IPropertySheet& GetPropertySheet();
#include "FrameBase.h"
FrameBase& GetFrame();