| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- using System.Runtime.CompilerServices;
- [assembly: InternalsVisibleTo("MBansheeEditor")]
- namespace BansheeEngine
- {
- /** @addtogroup BansheeEngine
- * @{
- */
- /** @defgroup GUI-Engine GUI
- *
- */
- /** @defgroup Input Input
- *
- */
- /** @defgroup Math Math
- *
- */
- /** @defgroup Physics Physics
- *
- */
- /** @defgroup Interop Interop
- *
- */
- /** @defgroup Rendering Rendering
- *
- */
- /** @defgroup Resources Resources
- *
- */
- /** @defgroup Scene Scene
- *
- */
- /** @defgroup Serialization Serialization
- *
- */
- /** @defgroup Utility Utility
- *
- */
- /** @} */
- /** @cond INTEROP */
- /// <summary>
- /// Contains the primary entry point for the program.
- /// </summary>
- class Program
- {
- /// <summary>
- /// Assembly entry point. Unused.
- /// </summary>
- static void Start()
- {
- }
- }
- /** @endcond */
- }
|