Engines: add ADRIFT 4 support

This commit is contained in:
He4eT 2023-06-12 23:45:58 +03:00 committed by Alexey
commit 6585eee27f
2 changed files with 12 additions and 5 deletions

View file

@ -2,6 +2,7 @@ import bocfel from 'emglken/src/bocfel.js'
import git from 'emglken/src/git.js'
import hugo from 'emglken/src/hugo.js'
import tads from 'emglken/src/tads.js'
import scare from 'emglken/src/scare.js'
const formats = [
{
@ -19,6 +20,11 @@ const formats = [
extensions: /hex$/,
engine: hugo,
},
{
id: 'scare',
extensions: /taf$/,
engine: scare,
},
{
id: 'tads',
extensions: /(gam|t3)$/,