namespace Glamourer.Api.Enums; /// Return codes for API functions. public enum GlamourerApiEc { /// The function succeeded. Success = 0, /// The function did not encounter a problem, but also did not do anything. NothingDone = 1, /// The requested actor was not found. ActorNotFound = 2, /// The requested actor was not human, but should have been. ActorNotHuman, /// The requested design was not found. DesignNotFound, /// The requested item was not found or could not be applied to the requested slot. ItemInvalid, /// The state of an actor could not be manipulated because it was locked and the provided key could not unlock it. InvalidKey, /// The provided object could not be converted into a valid Glamourer state to apply. InvalidState, }