module cm3d2.menu; class Menu { public static Menu fromSDL(string sdl) { throw new Exception("Not implemented yet"); } public static Menu fromMenu(string menu) { throw new Exception("Not implemented yet"); } public string toMenu() { throw new Exception("Not implemented yet"); } public string toSDL() { throw new Exception("Not implemented yet"); } }