1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
// -----------------------------------------------------------------------------
// File: level_level.ss
// Description: a function object that loads a level
// Author: Alexandre Martins <http://opensurge2d.org>
// License: MIT
// -----------------------------------------------------------------------------
using SurgeEngine.Level;
//
// Load Level is a function object that loads
// a specific level.
//
// Arguments:
// - path: string. The path of the .lev file to be loaded
// (e.g., "levels/sunshine-1.lev")
//
object "Load Level"
{
fun call(path)
{
Level.load(path);
}
}
|