| 123456789101112131415161718 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- namespace BansheeEngine
- {
- /** @addtogroup Scene
- * @{
- */
- /// <summary>
- /// Component type that is used in place of deserialized component types that no longer exist.
- /// </summary>
- internal sealed class MissingComponent : ManagedComponent
- {
- }
- /** @} */
- }
|