From ee79c550092535b9817d6e847a49195754d162a4 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 25 Jan 2014 21:46:20 +0000 Subject: [PATCH] oops, forgot to add this new file --- BizHawk.Client.Common/lua/LuaAttributes.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 BizHawk.Client.Common/lua/LuaAttributes.cs diff --git a/BizHawk.Client.Common/lua/LuaAttributes.cs b/BizHawk.Client.Common/lua/LuaAttributes.cs new file mode 100644 index 0000000000..1990e2b653 --- /dev/null +++ b/BizHawk.Client.Common/lua/LuaAttributes.cs @@ -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; + } + } +}