mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2025-12-16 21:01:48 +01:00
Started on GuiIcon, General fixes
This commit is contained in:
16
Game/Particle/Particle.h
Normal file
16
Game/Particle/Particle.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
#include "Texture.h"
|
||||
|
||||
class Particle {
|
||||
public:
|
||||
Particle() = default;
|
||||
Particle(const Vector2f& pos, const Vector2f& velocity, Texture* pTexture);
|
||||
void Update(float elapsedSec);
|
||||
void Draw() const;
|
||||
private:
|
||||
Vector2f m_Position;
|
||||
Vector2f m_Velocity;
|
||||
Vector2f m_Acceleration;
|
||||
|
||||
Texture* m_pTexture;
|
||||
};
|
||||
Reference in New Issue
Block a user