implemented paint selection of constructable buildings

This commit is contained in:
devZoGok
2023-09-23 14:51:34 +03:00
parent 85811fca7c
commit 35996a0298
8 changed files with 193 additions and 73 deletions
+9
View File
@@ -0,0 +1,9 @@
#include "unitButton.h"
namespace battleship{
using namespace std;
using namespace vb01;
using namespace vb01Gui;
UnitButton::UnitButton(Vector2 pos, Vector2 size, string name, string fontPath, int trigger, string imagePath) : Button(pos, size, name, fontPath, true, trigger, imagePath){}
}