mirror of
https://github.com/SimpleMobileTools/Simple-Draw.git
synced 2025-06-05 21:59:17 +02:00
13 lines
287 B
Java
13 lines
287 B
Java
package com.simplemobiletools.draw.actions;
|
|
|
|
import android.graphics.Path;
|
|
|
|
import java.io.IOException;
|
|
import java.io.Serializable;
|
|
import java.io.Writer;
|
|
|
|
public interface Action extends Serializable {
|
|
void perform(Path path);
|
|
void perform(Writer writer) throws IOException;
|
|
}
|