mirror of
https://inf.pirckheimer-gymnasium.de/kebab/kebab
synced 2026-08-26 16:31:23 +00:00
Implement directory structure with two basic scenes
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
package project;
|
||||
|
||||
import pi.Controller;
|
||||
import project.scenes.LoadingScene;
|
||||
|
||||
public class Main
|
||||
{
|
||||
public static void main(String[] args)
|
||||
{
|
||||
Controller.start();
|
||||
Controller.start(new LoadingScene());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
package project.scenes;
|
||||
|
||||
import pi.Scene;
|
||||
|
||||
public class LoadingScene extends Scene
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package project.scenes;
|
||||
|
||||
import pi.Scene;
|
||||
|
||||
public class StartScene extends Scene
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user