#define LIGHT_ENTRY_POINT // #include // #include namespace lt { class Mirror: public Application { public: Mirror() { // Set window properties auto properties = WindowProperties { .title = "Mirror", .size = glm::uvec2(1280u, 720u), .vsync = true, }; get_window().set_properties(properties); // Attach the sandbox layer LayerStack::emplace_layer("MirrorLayer"); } }; auto create_application() -> Scope { return create_scope(); } } // namespace lt