Start of the animation system

This commit is contained in:
Speiger 2024-04-25 15:31:04 +02:00
parent b53bb321af
commit 9d4732ea18
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
package speiger.src.coreengine.rendering.newGui.animation;
public class GuiAnimation {
public static class Builder {
}
public static interface IAction {
}
public static enum Target {
X, Y, WIDTH, HEIGHT, SCALE, VISIBILITY
}
}