14 lines
335 B
JavaScript
14 lines
335 B
JavaScript
/**
|
|
* Library of Void Features
|
|
* Export functions here to make them available globally under window.Void
|
|
*/
|
|
|
|
export function ComboStrikes() {
|
|
console.log("Combo Strikes executed!");
|
|
// Logic for Combo Strikes
|
|
}
|
|
|
|
export function NewFunction() {
|
|
console.log("New Void Function executed!");
|
|
// Logic for New Function
|
|
}
|