Zepheus.Database.DatabaseSkill.CreateDatabaseSkill C# (CSharp) Method

CreateDatabaseSkill() public static method

Create a new DatabaseSkill object.
public static CreateDatabaseSkill ( global id, global owner, global skillID, global upgrades, global isPassive ) : DatabaseSkill
id global Initial value of the ID property.
owner global Initial value of the Owner property.
skillID global Initial value of the SkillID property.
upgrades global Initial value of the Upgrades property.
isPassive global Initial value of the IsPassive property.
return DatabaseSkill
        public static DatabaseSkill CreateDatabaseSkill(global::System.Int32 id, global::System.Int32 owner, global::System.Int16 skillID, global::System.Int16 upgrades, global::System.Boolean isPassive)
        {
            DatabaseSkill databaseSkill = new DatabaseSkill();
            databaseSkill.ID = id;
            databaseSkill.Owner = owner;
            databaseSkill.SkillID = skillID;
            databaseSkill.Upgrades = upgrades;
            databaseSkill.IsPassive = isPassive;
            return databaseSkill;
        }