Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 334 Bytes

File metadata and controls

23 lines (20 loc) · 334 Bytes

hms-script

A semi-like yaml script code was meant to build for game script

Example

  • Hello World:
create:
    - trace("hello world")

Setup

  • Load a file:
import HMSScript;

class Main
{
    public function new()
    {
        var hms = new HMSScript("hello world.hms"); // the code is from above
    }
}