Program.cs 749 B

1234567891011121314151617181920212223242526
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. using System;
  4. using System.Collections.Generic;
  5. using System.IO;
  6. using System.Runtime.CompilerServices;
  7. using System.Diagnostics;
  8. [assembly: InternalsVisibleTo("MBansheeEditor")]
  9. namespace BansheeEngine
  10. {
  11. /// <summary>
  12. /// Contains the primary entry point for the program.
  13. /// </summary>
  14. class Program
  15. {
  16. /// <summary>
  17. /// Assembly entry point. Unused.
  18. /// </summary>
  19. static void Start()
  20. {
  21. }
  22. }
  23. }