1
0
Fork 0
fgdata/Nasal/std.nas
Henning Stahlke 4cb8a03e4b move globals.Hash to std.Hash
Add std.nas to loadpriority.xml and update related files
2020-07-08 15:31:23 +01:00

21 lines
685 B
Text

# SPDX-License-Identifier: GPL-2.0-or-later
#
# NOTE! This copyright does *not* cover user models that use these Nasal
# services by normal function calls - this is merely considered normal use
# of the code, and does *not* fall under the heading of "derived work."
#-------------------------------------------------------------------------------
# std.nas - class loader for std lib
# author: Henning Stahlke
# created: 07/2020
#-------------------------------------------------------------------------------
var include_path = "Nasal/std/";
var files = [
"hash",
"string",
"vector",
];
foreach (var file; files) {
io.include(include_path~file~".nas");
}