From 22882f01ed537cae28b2ce80b86264a9c9c52b00 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 9 Jun 2016 08:29:18 -0400 Subject: proper game resetting --- include/brice.hpp | 1 + include/coolarray.hpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/brice.hpp b/include/brice.hpp index 5f82fec..dc3ea96 100644 --- a/include/brice.hpp +++ b/include/brice.hpp @@ -11,6 +11,7 @@ namespace game { bool setValue(const std::string& id, const std::string& value); + void briceClear(void); void briceSave(void); void briceLoad(void); diff --git a/include/coolarray.hpp b/include/coolarray.hpp index 3e167b7..5388aab 100644 --- a/include/coolarray.hpp +++ b/include/coolarray.hpp @@ -16,7 +16,7 @@ public: _capacity = 0; } - CoolArray(size_t n, const T& value) { + CoolArray(size_t n, const T& value=0) { buffer = new T[n]; _size = n; _capacity = n; -- cgit v1.2.3