mirror of
https://github.com/AxioDL/boo.git
synced 2025-05-15 11:51:27 +00:00
17 lines
154 B
C++
17 lines
154 B
C++
#include "Surface.hpp"
|
|
|
|
namespace boo
|
|
{
|
|
|
|
ISurface* CSurfaceNewWindow()
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
ISurface* CSurfaceNewQWidget()
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
}
|