monodevelop -- using statements invalid

http://grab.by/Hknm

enter image description here

The using package ZeldaEngine.Math; does not autocomplete, or even register as valid when entered manually. What gives?

-T

Upvotes: 0

Views: 49

Answers (1)

user585968
user585968

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

Related Questions