mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 11:56:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			649 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			649 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "loadskil.hpp"
 | |
| 
 | |
| namespace ESMS
 | |
| {
 | |
|     const std::string Skill::sSkillNames[Length] = {
 | |
|         "Block",
 | |
|         "Armorer",
 | |
|         "Medium Armor",
 | |
|         "Heavy Armor",
 | |
|         "Blunt Weapon",
 | |
|         "Long Blade",
 | |
|         "Axe",
 | |
|         "Spear",
 | |
|         "Athletics",
 | |
|         "Enchant",
 | |
|         "Destruction",
 | |
|         "Alteration",
 | |
|         "Illusion",
 | |
|         "Conjuration",
 | |
|         "Mysticism",
 | |
|         "Restoration",
 | |
|         "Alchemy",
 | |
|         "Unarmored",
 | |
|         "Security",
 | |
|         "Sneak",
 | |
|         "Acrobatics",
 | |
|         "Light Armor",
 | |
|         "Short Blade",
 | |
|         "Marksman",
 | |
|         "Speechcraft",
 | |
|         "Hand To Hand",
 | |
|     };
 | |
| }
 |