12 lines
339 B
C#
12 lines
339 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
using UnityEngine;
|
|
|
|
namespace Microsoft.MixedReality.Toolkit
|
|
{
|
|
public class ReadOnlyAttribute : PropertyAttribute { }
|
|
public class BeginReadOnlyGroupAttribute : PropertyAttribute { }
|
|
public class EndReadOnlyGroupAttribute : PropertyAttribute { }
|
|
}
|