mirror of
https://gitgud.io/BondageProjects/Bondage-College.git
synced 2025-04-25 17:59:34 +00:00
18 lines
No EOL
509 B
JavaScript
18 lines
No EOL
509 B
JavaScript
var C999_Common_Crop_CurrentStage = 0;
|
|
|
|
// Chapter Common - Crop Load
|
|
function C999_Common_Crop_Load() {
|
|
LeaveIcon = "Leave";
|
|
LoadInteractions();
|
|
}
|
|
|
|
// Chapter Common - Crop Run
|
|
function C999_Common_Crop_Run() {
|
|
BuildInteraction(C999_Common_Crop_CurrentStage);
|
|
}
|
|
|
|
// Chapter Common - Crop Click, allow regular interactions and clicking on another item
|
|
function C999_Common_Crop_Click() {
|
|
ClickInteraction(C999_Common_Crop_CurrentStage);
|
|
InventoryClick(GetClickedInventory(), LeaveChapter, LeaveScreen);
|
|
} |