fishbowl/engine/include/fishbone/window.h

21 lines
336 B
C
Raw Normal View History

2026-05-29 01:10:45 +09:00
#ifndef __FISHBONE_WINDOW_H__
#define __FISHBONE_WINDOW_H__
namespace fishbone {
class Window;
}; // namespace fishbone
#include <fishbone/machdep.h>
namespace fishbone {
class Window {
struct Impl;
Impl* impl;
2026-05-29 14:23:50 +09:00
public:
2026-05-29 01:10:45 +09:00
Window(std::string title, int width, int height);
~Window();
};
2026-05-29 14:23:50 +09:00
}; // namespace fishbone
2026-05-29 01:10:45 +09:00
#endif