Cosmos/source/Cosmos.IL2CPU.API/Attribs/ObjectPointerAccess.cs
2017-08-03 16:46:15 -04:00

13 lines
300 B
C#

using System;
namespace Cosmos.IL2CPU.API
{
/// <summary>
/// This attribute is used on plug parameters, that need the unsafe pointer to an object's data area
/// </summary>
[AttributeUsage(AttributeTargets.Parameter)]
public class ObjectPointerAccess : Attribute
{
}
}