Added appropriate delete statements.

This commit is contained in:
2022-11-12 01:35:47 -08:00
parent 42645883cd
commit d81cb5d834
14 changed files with 71 additions and 8 deletions

View File

@ -6,6 +6,7 @@
#pragma once
#include "dawnlibs.hpp"
#include "util/mathutils.hpp"
#include "assert/assert.hpp"
namespace Dawn {
class DawnGame;
@ -32,6 +33,7 @@ namespace Dawn {
DawnGame *game;
IInputManager(DawnGame *game) {
assertNotNull(game);
this->game = game;
}