oops, forgot to add this new file
This commit is contained in:
parent
c66e529fb7
commit
ee79c55009
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
|
||||
namespace BizHawk.Client.Common
|
||||
{
|
||||
public class LuaMethodAttributes : Attribute
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Description { get; set; }
|
||||
|
||||
public LuaMethodAttributes(string name, string description)
|
||||
{
|
||||
Name = name;
|
||||
Description = description;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue