summaryrefslogtreecommitdiff
path: root/src/main/manaplus/manaApp/manaApp.interface.ts
diff options
context:
space:
mode:
authorLawnCable <lawncable.tmw2@simonlaux.de>2018-05-20 16:21:58 -0400
committerLawnCable <lawncable.tmw2@simonlaux.de>2018-05-20 16:21:58 -0400
commit181e277b6cc4a085864d44f4e9b5a5322cf6ec4e (patch)
treee93c5fdf89ba88484c183b64dc05e012c50a4c69 /src/main/manaplus/manaApp/manaApp.interface.ts
parenta7f4fff0fdf72876281d7a2e78afaca625e0d6cb (diff)
downloadelectron-181e277b6cc4a085864d44f4e9b5a5322cf6ec4e.tar.gz
electron-181e277b6cc4a085864d44f4e9b5a5322cf6ec4e.tar.bz2
electron-181e277b6cc4a085864d44f4e9b5a5322cf6ec4e.tar.xz
electron-181e277b6cc4a085864d44f4e9b5a5322cf6ec4e.zip
pre-prototype
Diffstat (limited to 'src/main/manaplus/manaApp/manaApp.interface.ts')
-rw-r--r--src/main/manaplus/manaApp/manaApp.interface.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/manaplus/manaApp/manaApp.interface.ts b/src/main/manaplus/manaApp/manaApp.interface.ts
new file mode 100644
index 0000000..81368e6
--- /dev/null
+++ b/src/main/manaplus/manaApp/manaApp.interface.ts
@@ -0,0 +1,6 @@
+export default interface ManaPlusApplication {
+ constructor():void,
+ run(parameters:string[]):void,
+ getGameDir():string,
+ getVersion():Promise<string>
+}