Advertisement
LittleAngel

Untitled

Mar 15th, 2011
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. // LootableBaseInspector.cs
  2. // Allows clean and easy editing of lootable items
  3. // Place in the Editor folder and forget
  4.  
  5. using UnityEngine;
  6. using UnityEditor;
  7. using System.Collections;
  8. using System.Collections.Generic;
  9.  
  10. [CustomEditor(typeof(LootableObject))]
  11.  
  12. public class LootableObjectInspector : LootableBaseInspector {
  13.  
  14.  
  15. public override void OnInspectorGUI() {
  16. base.OnInspectorGUI();
  17. }
  18. }
  19.  
  20.  
  21. // ©2011 Adam Buckner (aka: Little Angel) and theantranch.com (mailto: adam@theantranch.com)
  22. // Not for reuse or resale without permission.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement