aboutsummaryrefslogtreecommitdiffstats
path: root/src/items.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/items.cpp')
-rw-r--r--src/items.cpp19
1 files changed, 15 insertions, 4 deletions
diff --git a/src/items.cpp b/src/items.cpp
index 403c49e..b86abf7 100644
--- a/src/items.cpp
+++ b/src/items.cpp
@@ -19,10 +19,21 @@ int BaseItem::useItem()
int Sword::useItem()
{
std::cout << "Swing!" << std::endl;
- if (player->left)
- rotation += 10.0f;
- else
- rotation -= 10.0f;
+ std::thread([this]{
+ player->inv->usingi = true;
+ bool swing = true;
+ float coef = 0.0f;
+
+ while (swing) {
+ coef += .01f;
+ if (player->left)
+ rotation = coef;
+ else
+ rotation = -coef;
+ }
+ player->inv->usingi = false;
+ }).detach();
+
return 0;
}