rename CallableFunc to CallableLambda
This commit is contained in:
parent
ee8ff11712
commit
aa7189dd25
8 changed files with 43 additions and 19 deletions
21
engine/include/fishbone/window.h
Normal file
21
engine/include/fishbone/window.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue