10 lines
284 B
C
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);
|
|
}
|