Project DescriptionThis project includes complete code sample for XNA and Dependency Injection
postDependency InjectionDependency Injection is a simple pattern to loosely couple objects and break their dependencies.
The resulting design principle, Dependency Inversion, states:
Depend upon abstractions.Do not depend upon concrete classes.SampleThe following code sample refactors the
Going Beyond tutorial to render a 3D model on screen.
Check out
here for more information.