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

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

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