liblcf
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
rpg_savepicture.h
Go to the documentation of this file.
1 /* !!!! GENERATED FILE - DO NOT EDIT !!!! */
2 
3 /*
4  * Copyright (c) 2014 liblcf authors
5  * This file is released under the MIT License
6  * http://opensource.org/licenses/MIT
7  */
8 
9 #ifndef LCF_RPG_SAVEPICTURE_H
10 #define LCF_RPG_SAVEPICTURE_H
11 
12 // Headers
13 #include <string>
14 
18 namespace RPG {
19  class SavePicture {
20  public:
21  SavePicture();
22 
23  int ID;
24  std::string name;
25  double start_x;
26  double start_y;
27  double current_x;
28  double current_y;
33  double current_red;
34  double current_green;
35  double current_blue;
36  double current_sat;
38  double effect_speed;
40  double finish_x;
41  double finish_y;
50  int time_left;
53  };
54 }
55 
56 #endif
std::string name
Definition: rpg_actor.h:23