Program.cs 497 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Runtime.CompilerServices;
  5. using System.Diagnostics;
  6. [assembly: InternalsVisibleTo("MBansheeEditor")]
  7. namespace BansheeEngine
  8. {
  9. /// <summary>
  10. /// Contains the primary entry point for the program.
  11. /// </summary>
  12. class Program
  13. {
  14. /// <summary>
  15. /// Assembly entry point. Unused.
  16. /// </summary>
  17. static void Start()
  18. {
  19. }
  20. }
  21. }