mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 03:29:44 -06:00
6 lines
479 B
Plaintext
6 lines
479 B
Plaintext
assert(type(asset.require) == "function", "require should be function")
|
|
assert(type(asset.localResource) == "function", "localResource should be function")
|
|
assert(type(asset.syncedResource) == "function", "syncedResource should be function")
|
|
assert(type(asset.export) == "function", "export should be function")
|
|
assert(type(asset.onInitialize) == "function", "onInitialize should be function")
|
|
assert(type(asset.onDeinitialize) == "function", "onDeinitialize should be function") |