Reputation: 5
The using package ZeldaEngine.Math; does not autocomplete, or even register as valid when entered manually. What gives?
-T
Upvotes: 0
Views: 49
Reputation:
You have a syntax error in your code. Instead of a ;
you have a trailing .
.
Change this line
using ZeldaEngine.
...to:
using ZeldaEngine;
Upvotes: 2