2025-08-06 07:44:19 +08:00
|
|
|
const { contextBridge, ipcRenderer } = require('electron')
|
|
|
|
|
|
|
|
contextBridge.exposeInMainWorld('electronAPI', {
|
2025-08-06 14:15:15 +08:00
|
|
|
playSound: (soundFile) => ipcRenderer.send('play-sound', soundFile),
|
|
|
|
showTooltip: (text) => ipcRenderer.send('show-tooltip', text),
|
|
|
|
onUpdatePosition: (callback) => {
|
|
|
|
ipcRenderer.on('update-position', (_, position) => callback(position))
|
|
|
|
}
|
2025-08-06 07:44:19 +08:00
|
|
|
})
|