]> ruin.nu Git - eonsl.git/blob - eonsl/cskill.h
Added all .h .cpp and .ui files to the kdevprj..
[eonsl.git] / eonsl / cskill.h
1 /***************************************************************************
2                           cskill.h  -  description
3                              -------------------
4     begin                : Thu Jan 4 2001
5     copyright            : (C) 2001 by Michael Andreen
6     email                : whale@linux.nu
7  ***************************************************************************/
8
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17
18
19 #ifndef CSKILL_H
20 #define CSKILL_H
21
22 #include <qobject.h>
23
24 /**This class is made for basic skills..
25   *@author Michael Andreen
26   */
27
28 class CSkill : public QObject
29 {
30 Q_OBJECT
31 public: 
32         CSkill();
33         /** Create a skill with some initial values.. */
34   CSkill(int value, bool easy = false, bool checked = false);
35         
36         ~CSkill();
37
38 };
39
40 #endif