Exemplo n.º 1
0
        public PlasmaCannon(ProjectileManager projectileManager, ICanFire holdingObj, byte slot)
            : base(projectileManager, slot, holdingObj)
        {
            if (!(holdingObj is Ship))
            {
                ConsoleManager.WriteLine("WARNING: Chargable weapons are not yet implemented for non-ship objects! Crashes imminent!", ConsoleMessageType.Warning);
            }

            Stats = new PlasmaCannonStats();
        }
Exemplo n.º 2
0
 public PlasmaCannon()
 {
     Stats = new PlasmaCannonStats();
 }