oops, forgot to add this new file

This commit is contained in:
adelikat 2014-01-25 21:46:20 +00:00
parent c66e529fb7
commit ee79c55009
1 changed files with 16 additions and 0 deletions

View File

@ -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;
}
}
}