コード例 #1
0
        // public List<Item> BasicStarterItemList = new List<Item>();

        // Konstruktor som tilskriver intans variablene af CharacterAttributes, Character, list af item og Items
        public DnDDatabaseManagement(CharacterAttributes atri, Character Charac, List <Item> MyList, Item ItemContent)
        {
            myAttributes  = atri;
            myCharacter   = Charac;
            InventoryList = MyList;
            myItem        = ItemContent;
        }
コード例 #2
0
ファイル: Skill.cs プロジェクト: LAK258/DnDSheetGroup
 public Skill(CharacterAttributes Attribu, Character Charac)
 {
     myAttributes = Attribu;
     myCharacter  = Charac;
 }
コード例 #3
0
ファイル: SavingThrow.cs プロジェクト: LAK258/DnDSheetGroup
 public SavingThrow(CharacterAttributes Attribu, Character Charac)
 {
     myAttributes = Attribu;
     myCharacter  = Charac;
 }