コード例 #1
0
        public WeaponPage()
        {
            InitializeComponent();

            weapon = App.game.GetCurrentWeapon();

            lblCombat.Text = "Adds " + weapon.combatPoints.ToString() + " Combat";
            lblName.Text   = weapon.FullDescription();
        }
コード例 #2
0
ファイル: Game_Maps.cs プロジェクト: robsoft/PerilousMobile
        private void AddWeaponContent(int xCoord, int yCoord)
        {
            WeaponClass thisWeapon = new WeaponClass(xCoord, yCoord);

            weapons.Add(thisWeapon);
        }