Skip to content

Commit

Permalink
Release v2.0 code
Browse files Browse the repository at this point in the history
  • Loading branch information
vlOd committed Feb 25, 2023
1 parent bc3d8f6 commit bcc8a14
Show file tree
Hide file tree
Showing 8 changed files with 903 additions and 202 deletions.
11 changes: 11 additions & 0 deletions src/src/me/vlod/lightshotscraper/Delegate.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package me.vlod.lightshotscraper;


public interface Delegate {
public static final Delegate empty = new Delegate() {
@Override
public void call(Object... args) {
}
};
public void call(Object... args);
}
Loading

0 comments on commit bcc8a14

Please sign in to comment.