Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-20 13:36:23 +01:00
parent 16b40d913d
commit 58cebe4c98
697 changed files with 71766 additions and 2 deletions

View file

@ -0,0 +1,13 @@
package com.cappielloantonio.tempo.interfaces;
import androidx.annotation.Keep;
@Keep
public interface DialogClickCallback {
default void onPositiveClick() {}
default void onNegativeClick() {}
default void onNeutralClick() {}
}