- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace BansheeEngine
- {
- /// <summary>
- /// Component type that is used in place of deserialized component types that no longer exist.
- /// </summary>
- internal sealed class MissingComponent : Component
- {
- }
- }
|