using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FakeeDeck.ButtonType { internal class Button { public static string getButton(string Key) { return "
" + "
" + " " + " " + "
" + "
"; } public static bool invokeAction(string Key) { return false; } } }