forked from Shardstone/trail-into-darkness
changed directory structure
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace Jovian.InspectorTools
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
public class RequireLayerAttribute : Attribute
|
||||
{
|
||||
public readonly string LayerName;
|
||||
public readonly int LayerIndex = -1;
|
||||
|
||||
public RequireLayerAttribute(string layer)
|
||||
{
|
||||
LayerName = layer;
|
||||
}
|
||||
|
||||
public RequireLayerAttribute(int layer)
|
||||
{
|
||||
LayerIndex = layer;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user