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

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

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