20 lines
No EOL
455 B
C++
20 lines
No EOL
455 B
C++
module;
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
#include <thread>
|
|
|
|
export module Crafter.Graphics:WindowWaylandWayland;
|
|
import Crafter.Event;
|
|
import :WindowWayland;
|
|
import Crafter.Component;
|
|
|
|
export namespace Crafter {
|
|
class WindowWaylandWayland : public WindowWayland {
|
|
public:
|
|
WindowWaylandWayland(std::string name, std::uint32_t width, std::uint32_t height);
|
|
void Start();
|
|
private:
|
|
std::thread thread;
|
|
};
|
|
} |