| 123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Runtime.CompilerServices;
- using System.Diagnostics;
- [assembly: InternalsVisibleTo("MBansheeEditor")]
- namespace BansheeEngine
- {
- /// <summary>
- /// Contains the primary entry point for the program.
- /// </summary>
- class Program
- {
- /// <summary>
- /// Assembly entry point. Unused.
- /// </summary>
- static void Start()
- {
- }
- }
- }
|