/Rendering/SceneGraphTests/Program.cs
# · C# · 19 lines · 12 code · 0 blank · 7 comment · 0 complexity · 5f70f8d35c2a8eb65034bbac55615a28 MD5 · raw file
- namespace Delta.Rendering.SceneGraphTests
- {
- /// <summary>
- /// SceneGraph tests to see how scene hierarchy works.
- /// </summary>
- internal class Program
- {
- #region Main (Static)
- /// <summary>
- /// Main entry point, will just call one of the tests, uncomment the rest
- /// </summary>
- public static void Main()
- {
- //SceneGraphTests.BasicRootNode();
- SceneGraphTests.BasicMeshSceneNode();
- }
- #endregion
- }
- }