mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
13 lines
308 B
C#
13 lines
308 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 ObjectPointerAccessAttribute: Attribute
|
|
{
|
|
|
|
}
|
|
}
|