mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 03:29:44 -06:00
7 lines
551 B
Plaintext
7 lines
551 B
Plaintext
assert(type(asset.require) == "function", "require should be function")
|
|
assert(type(asset.request) == "function", "request 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") |