[add] Added VarStoreInterface.

This commit is contained in:
falsycat 2019-10-06 00:00:00 +00:00
parent 2183b74ee7
commit 5722f65892

View File

@ -0,0 +1,11 @@
/// License: MIT
module sjplayer.VarStoreInterface;
import sjscript;
///
interface VarStoreInterface {
public:
///
float opIndex(string name) const;
}