Added 'design' functionality

This commit is contained in:
Tinglyyy
2026-02-07 18:54:19 +01:00
parent fbaec2464c
commit c7fa63b769
58 changed files with 2941 additions and 86 deletions

View File

@@ -0,0 +1,25 @@
/* Author: Maple
* Feb. 2 2026
* */
package org.openautonomousconnection.oacswing.component;
import lombok.Getter;
import lombok.Setter;
import org.openautonomousconnection.oacswing.animated.AnimatedComponent;
import org.openautonomousconnection.oacswing.animated.AnimationPath;
import javax.swing.*;
public class OACAnimatedPanel extends OACPanel implements AnimatedComponent {
@Getter
@Setter
private AnimationPath animationPath;
@Getter @Setter
private Timer currentRun = null;
public OACAnimatedPanel(AnimationPath animationPath) {
this.animationPath = animationPath;
}
}