mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
13 lines
300 B
C#
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
|
|
{
|
|
|
|
}
|
|
}
|