Files
cell/scripts/enet_playdate.c
2025-12-07 04:04:11 -06:00

10 lines
284 B
C

// enet_playdate.c - ENet stub for Playdate
// ENet networking is not supported on Playdate, so this module returns an empty object.
#include "cell.h"
JSValue js_enet_use(JSContext *js) {
// Return empty object - ENet is not available on Playdate
return JS_NewObject(js);
}