Created rudimentary board

This commit is contained in:
Lauchmelder 2022-01-14 22:11:42 +01:00
parent 63c7a1bb2d
commit 79736fc3bc
14 changed files with 164 additions and 37 deletions

View file

@ -1,9 +1,10 @@
#pragma once
#include <vector>
#include <lol/lol.hpp>
class Window;
class Card;
class Application
{
@ -22,7 +23,7 @@ private:
Window* window;
lol::ObjectManager manager;
Card* card;
std::vector<lol::Layer*> layerStack;
private:
Application();