[ADD] start of number display

This commit is contained in:
DESKTOP-EBR7IVA\kimve
2021-06-11 12:31:33 +02:00
parent 63c6ec8a0c
commit 8c1191c131
2 changed files with 15 additions and 0 deletions

View File

@@ -11,6 +11,9 @@
#include "../renderEngine/renderer.h"
#include "../shaders/entity_shader.h"
#include "../toolbox/toolbox.h"
#include <opencv2/core/base.hpp>
#include <opencv2/imgcodecs.hpp>
#include <opencv2/imgproc.hpp>
namespace scene
@@ -97,6 +100,8 @@ namespace scene
* @return void
*/
void onKey(GLFWwindow* window, int key, int scancode, int action, int mods) override;
void DrawScore(cv::Mat& output_frame);
};
}