MissingComponent.cs 553 B

123456789101112131415161718
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. namespace BansheeEngine
  4. {
  5. /** @addtogroup Scene
  6. * @{
  7. */
  8. /// <summary>
  9. /// Component type that is used in place of deserialized component types that no longer exist.
  10. /// </summary>
  11. internal sealed class MissingComponent : ManagedComponent
  12. {
  13. }
  14. /** @} */
  15. }