From 7a51dfd44d8cee9608c61ab820f746416074cd3e Mon Sep 17 00:00:00 2001 From: Ogrezeanu Alexandru Date: Thu, 22 Feb 2024 14:00:51 +0200 Subject: [PATCH] Added a new protocol for OMP which extends SAMP --- protocols/gtasao.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 protocols/gtasao.js diff --git a/protocols/gtasao.js b/protocols/gtasao.js new file mode 100644 index 0000000..f78de7c --- /dev/null +++ b/protocols/gtasao.js @@ -0,0 +1,8 @@ +import samp from './samp.js' + +export default class gtasao extends samp { + constructor() { + super() + this.isOmp = true + } +} \ No newline at end of file