18 lines
345 B
C#
18 lines
345 B
C#
|
|
using UnityEngine;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace NobleMuffins.LimbHacker
|
||
|
|
{
|
||
|
|
public abstract class AbstractSliceHandler : MonoBehaviour
|
||
|
|
{
|
||
|
|
public virtual void handleSlice (GameObject[] results)
|
||
|
|
{
|
||
|
|
//Do nothing
|
||
|
|
}
|
||
|
|
|
||
|
|
public virtual bool cloneAlternate (Dictionary<string, bool> hierarchyPresence)
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|