45f0b31d57
Working: Rendering Resources Physics Player movement with mouse Shooting with mouse Tiles
16 lines
263 B
C++
Executable file
16 lines
263 B
C++
Executable file
/*
|
|
* Particle.cpp
|
|
*
|
|
* Created on: 15.08.2012
|
|
* Author: Felix
|
|
*/
|
|
|
|
#include "Particle.h"
|
|
|
|
Particle::Particle(const std::shared_ptr<sf::Texture>& texture, const PhysicalData& data) :
|
|
Sprite(texture, data) {
|
|
}
|
|
|
|
Particle::~Particle() {
|
|
}
|
|
|