From 5722f65892b44fa3a628cbcb96e378395ec2adc4 Mon Sep 17 00:00:00 2001 From: falsycat Date: Sun, 6 Oct 2019 00:00:00 +0000 Subject: [PATCH] [add] Added VarStoreInterface. --- sjplayer/src/sjplayer/VarStoreInterface.d | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sjplayer/src/sjplayer/VarStoreInterface.d diff --git a/sjplayer/src/sjplayer/VarStoreInterface.d b/sjplayer/src/sjplayer/VarStoreInterface.d new file mode 100644 index 0000000..cb497d4 --- /dev/null +++ b/sjplayer/src/sjplayer/VarStoreInterface.d @@ -0,0 +1,11 @@ +/// License: MIT +module sjplayer.VarStoreInterface; + +import sjscript; + +/// +interface VarStoreInterface { + public: + /// + float opIndex(string name) const; +}