Program.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. using System.Runtime.CompilerServices;
  4. [assembly: InternalsVisibleTo("MBansheeEditor")]
  5. namespace BansheeEngine
  6. {
  7. /** @addtogroup BansheeEngine
  8. * Documentation for the engine scripting API.
  9. * @{
  10. */
  11. /** @defgroup Animation Animation
  12. * Animation clips, skeletal and blend shape animation, animation playback, blending and other features.
  13. */
  14. /** @defgroup Audio Audio
  15. * Audio clips, 3D sound and music reproduction.
  16. */
  17. /** @defgroup GUI_Engine GUI
  18. * Graphical user interface, including elements, styles and localization.
  19. */
  20. /** @defgroup Input Input
  21. * %Input (mouse, keyboard, gamepad, etc.).
  22. */
  23. /** @cond INTEROP */
  24. /** @defgroup Interop Interop
  25. * Glue types that are used for C++/C# interop.
  26. */
  27. /** @endcond */
  28. /** @defgroup Math Math
  29. * Variety of general purpose math functionality.
  30. */
  31. /** @defgroup Physics Physics
  32. * %Physics system: colliders, triggers, rigidbodies, joints, scene queries, etc.
  33. */
  34. /** @defgroup Rendering Rendering
  35. * Materials, shaders, textures, meshes and components relating to rendering.
  36. */
  37. /** @defgroup Resources Resources
  38. * Resource types and resource management functionality.
  39. */
  40. /** @defgroup Scene Scene
  41. * Scene objects and components.
  42. */
  43. /** @defgroup Serialization Serialization
  44. * Serialization and deserialization of native objects.
  45. */
  46. /** @defgroup Utility Utility
  47. * Various utility functionality.
  48. */
  49. /** @} */
  50. /** @cond INTEROP */
  51. /// <summary>
  52. /// Contains the primary entry point for the program.
  53. /// </summary>
  54. class Program
  55. {
  56. }
  57. /** @endcond */
  58. }