summaryrefslogtreecommitdiff
path: root/Assets/ThirdParty/AdvancedInspector/Examples/CSharp/CreateDerived/AIExample_DerivedClassB.cs
blob: 2a5f1983cc4c2b160e526b2b1dbd3e2f66c2c521 (plain)
1
2
3
4
5
6
7
8
9
10
11
using UnityEngine;
using System.Collections;

using AdvancedInspector;

// You don't need [AdvancedInspector] if the parent class has it.
public class AIExample_DerivedClassB : AIExample_BaseClass
{
    [Inspect]
    public int myDerivedIntB;
}