Inheritance: Checkable
Beispiel #1
0
 public void useFork(Checkable c)
 {
     if (c is ItemFork)
     {
         isf = c as ItemFork;
     }
 }
Beispiel #2
0
 public ItemForkEditor()
 {
     isf = ScriptableObject.CreateInstance <ItemFork>();
 }
 public void useFork(Checkable c)
 {
     if(c is ItemFork)
         isf = c as ItemFork;
 }
 public ItemForkEditor()
 {
     isf = ScriptableObject.CreateInstance<ItemFork>();
 }