Here is the line where I am getting error:
_activeType == typeof(Reticle);
Here is how the Reticle class is defined. Some of the p
Reticle
_activeType = typeof(Reticle);
== is a comparison operator ( for comparing )
I think you meant
not the double ==