PageRenderTime 52ms CodeModel.GetById 14ms RepoModel.GetById 1ms app.codeStats 0ms

/Rendering/SceneGraphTests/Program.cs

#
C# | 19 lines | 12 code | 0 blank | 7 comment | 0 complexity | 5f70f8d35c2a8eb65034bbac55615a28 MD5 | raw file
Possible License(s): Apache-2.0
  1. namespace Delta.Rendering.SceneGraphTests
  2. {
  3. /// <summary>
  4. /// SceneGraph tests to see how scene hierarchy works.
  5. /// </summary>
  6. internal class Program
  7. {
  8. #region Main (Static)
  9. /// <summary>
  10. /// Main entry point, will just call one of the tests, uncomment the rest
  11. /// </summary>
  12. public static void Main()
  13. {
  14. //SceneGraphTests.BasicRootNode();
  15. SceneGraphTests.BasicMeshSceneNode();
  16. }
  17. #endregion
  18. }
  19. }