source: 2011/26/JaakkoL/Rogue Agent 2372/Rogue Agent 2372/Rogue Agent 2372/Weapons.cs @ 2341

Revision 2341, 568 bytes checked in by teeevasa, 12 years ago (diff)
Line 
1using System;
2using Jypeli;
3using Jypeli.Assets;
4using Jypeli.Controls;
5using Jypeli.Effects;
6using Jypeli.Widgets;
7
8public class Pistol : Weapon
9{
10    public Pistol(double width, double height)
11        : base(width, height)
12    {
13        Image = Game.LoadImage("Images/gausspistol");
14        AttackSound = Game.LoadSoundEffect("Sounds/pistolshot");
15        AmmoIgnoresGravity = true;
16        InfiniteAmmo = true;
17    }
18
19    protected override PhysicsObject CreateProjectile()
20    {
21        return new Projectile(1, 1, Color.DarkGray);
22    }
23}
Note: See TracBrowser for help on using the repository browser.