using for example
using MyGameStuff;
or if you do not, in your code ...
var sprite = new MyGameStuff.Sprite ();
If you put your classes in another assembly (project), you need to add a link to your project / assembly.
If you do not have a project in your solution, you may also need to add the project to the solution and then reference the project from the main application.
source share