// // UseSkillErrors.cs // // Copyright (c) František Boháček. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace NosSmooth.Game.Contracts; /// /// Errors for using a skill. /// public enum UseSkillErrors { /// /// An unknown error has happened. /// Unknown, /// /// The character does not have enough ammo. /// NoAmmo, /// /// The character does not have enough mana. /// NoMana, /// /// There was no response from the server. /// NoResponse }