cm3d2tool/source/cm3d2/menu.d

25 lines
435 B
D

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");
}
}