public int MaxPlayerResistance
{
get { return 90; }
set { MaxPlayerResistance=value; }
}
this works fine with me..it doesnt give any error.
but it doesnt override, because it need abstract, virtual or override modifiers. The function in the base class doesnt have any of those.
|