2020-11-29 17:30:06 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-12-24 15:08:50 +00:00
|
|
|
// 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/PropertySheet.h"
|
2020-12-20 15:32:51 +00:00
|
|
|
IPropertySheet& GetPropertySheet();
|
2020-12-24 15:08:50 +00:00
|
|
|
|
|
|
|
#include "FrameBase.h"
|
|
|
|
FrameBase& GetFrame();
|