This repository has been archived on 2019-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
dungeon-gunner/source/particle/Particle.cpp
2012-12-23 15:50:49 +01:00

16 lines
229 B
C++
Executable file

/*
* Particle.cpp
*
* Created on: 15.08.2012
* Author: Felix
*/
#include "Particle.h"
Particle::Particle(const Yaml& config, const Data& data) :
Sprite(data, config) {
}
Particle::~Particle() {
}