I know that the C# Random class does not make \"true random\" numbers, but I\'m coming up with an issue with this code:
public void autoAttack(enemy theE
Instantiate the object random outside the method. ( Random random = new Random(); should be written before the method)
It is also vital that you understand that random isn't really random.