17 lines
263 B
C++
17 lines
263 B
C++
|
/*
|
||
|
* 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() {
|
||
|
}
|
||
|
|