ComponentsLauncher.java 1.0 KB

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (C) 2023 Parisi Alessandro - alessandro.parisi406@gmail.com
  3. * This file is part of MaterialFX (https://github.com/palexdev/MaterialFX)
  4. *
  5. * MaterialFX is free software: you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public License
  7. * as published by the Free Software Foundation; either version 3 of the License,
  8. * or (at your option) any later version.
  9. *
  10. * MaterialFX is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. * See the GNU Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public License
  16. * along with MaterialFX. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. package app;
  19. import app.buttons.ButtonsPlayground;
  20. import javafx.application.Application;
  21. public class ComponentsLauncher {
  22. public static void main(String[] args) {
  23. Application.launch(ButtonsPlayground.class, args);
  24. }
  25. }