/* * Copyright (C) 2019 Adrien Destugues * * Distributed under terms of the MIT license. */ #include "../ui/RegisterAccountWindow.h" #include int main(void) { BApplication app("application/x-vnd.Renga-test"); BWindow* w = new RegisterAccountWindow(); w->Show(); app.Run(); return 0; }