/*
....[@@@..[@@@..............[@.................. MUD++ is a written from
....[@..[@..[@..[@..[@..[@@@@@....[@......[@.... scratch multi-user swords and
....[@..[@..[@..[@..[@..[@..[@..[@@@@@..[@@@@@.. sorcery game written in C++.
....[@......[@..[@..[@..[@..[@....[@......[@.... This server is an ongoing
....[@......[@..[@@@@@..[@@@@@.................. development project.  All 
................................................ contributions are welcome. 
....Copyright(C).1995.Melvin.Smith.............. Enjoy. 
------------------------------------------------------------------------------
Melvin Smith (aka Fusion)         msmith@falcon.mercer.peachnet.edu 
MUD++ development mailing list    mudpp-list@spice.com
------------------------------------------------------------------------------
skill.h
*/

#ifndef _SKILL_H
#define _SKILL_H

class Skill
{
	private:
		char *name;
		short int level;
		short int class_;
		int *index;
		short int adept;
		short int pracs; 
		short int position;
		short int wait_state;
	public:
		int isName( char *str );
		int Level();
		int Class();
		int Index();
		int Adept();
		int Pracs();
		int Position();
		int WaitState();
};
#endif