mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-14 10:48:28 +12:00
14 lines
No EOL
222 B
C++
14 lines
No EOL
222 B
C++
#pragma once
|
|
|
|
#include <wx/wxprec.h>
|
|
|
|
// base class for all render interfaces
|
|
class IRenderCanvas
|
|
{
|
|
public:
|
|
IRenderCanvas(bool is_main_window)
|
|
: m_is_main_window(is_main_window) {}
|
|
|
|
protected:
|
|
bool m_is_main_window;
|
|
}; |