using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.IL2CPU.API
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
public sealed class InlineAttribute : Attribute
{
///
/// This field currently does nothing, but is here for later use.
///
public TargetPlatform TargetPlatform = TargetPlatform.x86;
}
///
/// This enum contains the possible target platforms,
/// to eventually allow for selective inclusion of plugs,
/// depending on the target platform.
///
public enum TargetPlatform
{
x86,
x64,
IA64,
ARM
}
}