working packer
This commit is contained in:
parent
1ffea4df0d
commit
acff632331
7 changed files with 136 additions and 25 deletions
|
|
@ -13,7 +13,7 @@ namespace fishbone {
|
|||
class Client {
|
||||
public:
|
||||
fishbone::SoundDriver sound;
|
||||
fishbone::Window window;
|
||||
fishbone::Window window;
|
||||
};
|
||||
}; // namespace fishbone
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ namespace fishbone {
|
|||
Impl* impl;
|
||||
|
||||
public:
|
||||
using Callable = void(*)(fishbone::Thread* thread, void* arg);
|
||||
using Callable = void (*)(fishbone::Thread* thread, void* arg);
|
||||
using CallableLambda = std::function<void(fishbone::Thread* thread)>;
|
||||
|
||||
Thread(Callable call, void* arg);
|
||||
|
|
|
|||
|
|
@ -12,10 +12,10 @@ namespace fishbone {
|
|||
struct Impl;
|
||||
Impl* impl;
|
||||
|
||||
public:
|
||||
public:
|
||||
Window(std::string title, int width, int height);
|
||||
~Window();
|
||||
};
|
||||
};
|
||||
}; // namespace fishbone
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue