seperate pay function

This commit is contained in:
buzz-lightsnack-2007 2024-02-27 21:47:09 +08:00
parent 529365b88d
commit 2a94b86ba0

View file

@ -249,12 +249,17 @@ public class transact {
return(true);
};
public static void pay() {
/* Initialize the payment process of the transaction. */
payment.init();
};
public static void finalise() {
/* Finalize the transaction. */
// TODO Replace this section with wrapping up the payment, "saving" the receipt, and then initializing it.
// receipt.finalise();
}
};
}