/* * Particle.cpp * * Created on: 15.08.2012 * Author: Felix */ #include "Particle.h" Particle::Particle(const std::shared_ptr& texture, const PhysicalData& data) : Sprite(texture, data) { } Particle::~Particle() { }