Loom Minimal Application Template

Overview

This is a minimal application template for Loom.

Using the Loom Minimal Application Template is simple. Use it for the base of any new project to quickly and easily get started live editing your game.

Try It

Use the following Loom CLI commands to run this example:

loom new MyLoomMinAppTemplate --example LoomMinAppTemplate
cd MyLoomMinAppTemplate
loom run

Screenshot

LoomMinimalApplicationTemplate Screenshot

Code

src/LoomMinAppTemplate.ls

package
{
    import loom.Application;

    public class LoomMinAppTemplate extends Application
    {
        override public function run():void
        {

        }
    }
}

: