| 123456789101112131415161718192021222324 |
- using System.Collections.Generic;
- using BansheeEngine;
- namespace BansheeEditor
- {
- /// <summary>
- /// Renders an inspector for the <see cref="Prefab"/> resource.
- /// </summary>
- [CustomInspector(typeof(Prefab))]
- internal class PrefabInspector : Inspector
- {
- /// <inheritdoc/>
- protected internal override void Initialize()
- {
- // No GUI for prefab resource
- }
- /// <inheritdoc/>
- protected internal override InspectableState Refresh()
- {
- return InspectableState.NotModified;
- }
- }
- }
|