PGE Engine
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros Pages
spawn_effect_def.h
1 #ifndef SPAWNEFFECTDEF_H
2 #define SPAWNEFFECTDEF_H
3 
4 #include <QString>
5 #include <QSettings>
6 #include <QList>
7 
9 {
10 public:
13  void fill(QString prefix, QSettings *setup);
14 
15  long id;
16  float startX;
17  float startY;
18  int animationLoops;
19  int delay;
20  int framespeed;
21  QList<int> frame_sequence;
22  float velocityX;
23  float velocityY;
24  float gravity;
25  int direction;
26 
27  float min_vel_x;
28  float min_vel_y;
29  float max_vel_x;
30  float max_vel_y;
31  float decelerate_x;
32  float decelerate_y;
33 };
34 
35 #endif // SPAWNEFFECTDEF_H
Definition: spawn_effect_def.h:8