mirror of
https://github.com/Nezumi-2711/Foodify.git
synced 2026-09-22 05:31:59 +00:00
8 lines
144 B
Java
8 lines
144 B
Java
package com.sjapps.library.customdialog;
|
|
|
|
public interface DialogButtonEvents {
|
|
void onLeftButtonClick();
|
|
void onRightButtonClick();
|
|
}
|
|
|