AcManager.Tools.Objects.KunosCareerEventObject.KunosCareerEventObject C# (CSharp) Method

KunosCareerEventObject() public method

public KunosCareerEventObject ( string kunosCareerId, KunosCareerObjectType type, IFileAcManager manager, string id, bool enabled ) : System
kunosCareerId string
type KunosCareerObjectType
manager IFileAcManager
id string
enabled bool
return System
        public KunosCareerEventObject(string kunosCareerId, KunosCareerObjectType type, IFileAcManager manager, string id, bool enabled)
                : base(manager, id, enabled) {
            KunosCareerId = kunosCareerId;
            EventNumber = FlexibleParser.ParseInt(id.Substring(@"event".Length)) - 1;
            KunosCareerType = type;
        }