Basic logic cutscene stuff

This commit is contained in:
Anuken
2022-02-12 14:28:43 -05:00
parent f31300b6e3
commit ee4b8c77e4
6 changed files with 116 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
package mindustry.logic;
public enum CutsceneAction{
pan,
zoom,
stop;
public static final CutsceneAction[] all = values();
}