placeable resource deposits in the map editor

This commit is contained in:
devZoGok
2023-10-07 17:29:27 +03:00
parent 3696158e78
commit 9fcccb498d
7 changed files with 59 additions and 6 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef RESOURCE_DEPOSIT_H
#define RESOURCE_DEPOSIT_H
#include "gameObject.h"
namespace battleship{
class ResourceDeposit : public GameObject{
public:
ResourceDeposit(int, vb01::Vector3, vb01::Quaternion);
void update();
private:
};
}
#endif