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