//********************************** Banshee Engine (www.banshee3d.com) **************************************************// //**************** Copyright (c) 2016 Marko Pintera (marko.pintera@gmail.com). All rights reserved. **********************// using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace BansheeEngine { /// /// Component type that is used in place of deserialized component types that no longer exist. /// internal sealed class MissingComponent : Component { } }