Advertisement
Berenger

ClassB.cs

Dec 6th, 2012
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.18 KB | None | 0 0
  1. using UnityEngine;
  2.  
  3. [System.Serializable]
  4. public class ClassB : ClassA
  5. {
  6.     public ClassB() : base(){}
  7.    
  8.     public override void Draw()
  9.     {
  10.         GUILayout.Label( "BBBBBBBB" );
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement