16 lines
267 B
C++
16 lines
267 B
C++
#pragma once
|
|
|
|
#include "cve_window.hpp"
|
|
|
|
namespace cve {
|
|
class FirstApp {
|
|
public:
|
|
static constexpr int WIDTH = 800;
|
|
static constexpr int HEIGHT = 600;
|
|
|
|
void run();
|
|
private:
|
|
CveWindow cveWindow{WIDTH, HEIGHT, "Hello Vulkan!"};
|
|
};
|
|
}
|