summaryrefslogtreecommitdiff
path: root/Assets/ThirdParty/AdvancedInspector/Examples/CSharp/CreateDerived/AIExample_DerivedClassC.cs
blob: 9990533a67f4a91b8b17e0b5fe716f6fd0139e22 (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_DerivedClassC : AIExample_BaseClass
{
    [Inspect]
    public string myDerivedStringC;
}