aboutsummaryrefslogtreecommitdiff
path: root/mwe/gameloop/include/gameObject.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-09-21 15:35:05 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-09-21 15:35:05 +0200
commit44affb6635359ef2f619562800165ccfff438ae4 (patch)
tree4da7fa01953055740f9e668e94c59259d4d7749f /mwe/gameloop/include/gameObject.h
parentca393b6b47618e48c107ad5c021d86700343648e (diff)
`make format`
Diffstat (limited to 'mwe/gameloop/include/gameObject.h')
-rw-r--r--mwe/gameloop/include/gameObject.h52
1 files changed, 27 insertions, 25 deletions
diff --git a/mwe/gameloop/include/gameObject.h b/mwe/gameloop/include/gameObject.h
index 0e17991..69f4d52 100644
--- a/mwe/gameloop/include/gameObject.h
+++ b/mwe/gameloop/include/gameObject.h
@@ -1,29 +1,31 @@
#pragma once
#include <iostream>
class GameObject {
- public:
- GameObject();
- GameObject(std::string name, float x, float y, float width, float height, float velX, float velY);
- std::string getName() const;
- float getX() const;
- float getY() const;
- float getWidth() const;
- float getHeight() const;
- float getVelX() const;
- float getVelY() const;
- void setName(std::string value);
- void setX(float value);
- void setY(float value);
- void setWidth(float value);
- void setHeight(float value);
- void setVelX(float value);
- void setVelY(float value);
- private:
- std::string name = "";
- float x = 0;
- float y = 0;
- float width = 0;
- float height = 0;
- float velX = 0;
- float velY = 0;
+public:
+ GameObject();
+ GameObject(std::string name, float x, float y, float width, float height,
+ float velX, float velY);
+ std::string getName() const;
+ float getX() const;
+ float getY() const;
+ float getWidth() const;
+ float getHeight() const;
+ float getVelX() const;
+ float getVelY() const;
+ void setName(std::string value);
+ void setX(float value);
+ void setY(float value);
+ void setWidth(float value);
+ void setHeight(float value);
+ void setVelX(float value);
+ void setVelY(float value);
+
+private:
+ std::string name = "";
+ float x = 0;
+ float y = 0;
+ float width = 0;
+ float height = 0;
+ float velX = 0;
+ float velY = 0;
};