Ballz.GameSession.World.Shot.Shot C# (CSharp) 메소드

Shot() 공개 메소드

public Shot ( ) : System
리턴 System
        public Shot()
        {
            // The extents of the projectile
            Radius = 0.1f;
            IsStatic = false;

            if (ExplosionDelay < 0)
            {
                // Explosion countdown starts on release
                explosionCountdown = Math.Abs(ExplosionDelay);
            }
        }