12 lines
189 B
C#
12 lines
189 B
C#
using UnityEngine;
|
|
|
|
public class OVRNamedArrayAttribute : PropertyAttribute
|
|
{
|
|
public readonly string[] names;
|
|
|
|
public OVRNamedArrayAttribute(string[] names)
|
|
{
|
|
this.names = names;
|
|
}
|
|
}
|