Exemple #1
0
        // constructor
        protected CtfBase(CtfPlugIn plugin, IAnnotationService annotations = null, float baseRadius = 1.5f)
            : base(annotations)
        {
            Plugin      = plugin;
            _baseRadius = baseRadius;

            Reset();
        }
Exemple #2
0
		// constructor
	    protected CtfBase(CtfPlugIn plugin, IAnnotationService annotations = null, float baseRadius = 1.5f)
            :base(annotations)
	    {
	        Plugin = plugin;
	        _baseRadius = baseRadius;

	        Reset();
	    }
Exemple #3
0
 // constructor
 public CtfEnemy(CtfPlugIn plugin, IAnnotationService annotations = null)
     : base(plugin, annotations)
 {
     Reset();
 }
Exemple #4
0
		// constructor
		public CtfEnemy(CtfPlugIn plugin, IAnnotationService annotations = null)
            : base(plugin, annotations)
		{
			Reset();
		}
Exemple #5
0
 // constructor
 public CtfSeeker(CtfPlugIn plugin, IAnnotationService annotations = null, bool arrive = false)
     : base(plugin, annotations)
 {
     _arrive = arrive;
     Reset();
 }
Exemple #6
0
	    // constructor
		public CtfSeeker(CtfPlugIn plugin, IAnnotationService annotations = null, bool arrive = false)
            : base(plugin, annotations)
		{
		    _arrive = arrive;
		    Reset();
		}