MissingComponent.cs 571 B

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