rename CallableFunc to CallableLambda

This commit is contained in:
Nishi 2026-05-29 01:10:45 +09:00
commit aa7189dd25
8 changed files with 43 additions and 19 deletions

View file

@ -0,0 +1,21 @@
#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;
public:
Window(std::string title, int width, int height);
~Window();
};
};
#endif