MissingComponent.cs 321 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace BansheeEngine
  6. {
  7. /// <summary>
  8. /// Component type that is used in place of deserialized component types that no longer exist.
  9. /// </summary>
  10. internal sealed class MissingComponent : Component
  11. {
  12. }
  13. }