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

13 lines
299 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
{
}
}