blob: 2838278189c407e55e71beb4b67fe0465653e959 [file] [log] [blame]
module imports.test11931b;
import imports.test11931c;
import imports.test11931d;
class GUIElement
{
public:
Signal!void onSubmit;
}
mixin template GUIManager()
{
public:
void foo()
{
onLeftUp.add(&guiUp);
}
void guiUp() {}
}