2014-01-25 21:46:20 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace BizHawk.Client.Common
|
|
|
|
|
{
|
|
|
|
|
public class LuaMethodAttributes : Attribute
|
|
|
|
|
{
|
|
|
|
|
public LuaMethodAttributes(string name, string description)
|
|
|
|
|
{
|
|
|
|
|
Name = name;
|
|
|
|
|
Description = description;
|
|
|
|
|
}
|
2014-09-20 01:00:50 +00:00
|
|
|
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class LuaLibraryAttributes : Attribute
|
|
|
|
|
{
|
|
|
|
|
public LuaLibraryAttributes(bool released)
|
|
|
|
|
{
|
|
|
|
|
Released = released;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool Released { get; set; }
|
2014-01-25 21:46:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|