mirror of
https://github.com/AxioDL/boo.git
synced 2025-05-15 11:51:27 +00:00
15 lines
175 B
C++
15 lines
175 B
C++
#ifndef CSURFACE_HPP
|
|
#define CSURFACE_HPP
|
|
|
|
#include "ISurface.hpp"
|
|
|
|
namespace boo
|
|
{
|
|
|
|
ISurface* CSurfaceNewWindow();
|
|
ISurface* CSurfaceNewQWidget();
|
|
|
|
}
|
|
|
|
#endif // CSURFACE_HPP
|