diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs index a0d924d..5df2d6e 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | |||
@@ -371,6 +371,23 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
371 | return m_OSSL_Functions.osMatchString(src, pattern, start); | 371 | return m_OSSL_Functions.osMatchString(src, pattern, start); |
372 | } | 372 | } |
373 | 373 | ||
374 | // Information about data loaded into the region | ||
375 | public string osLoadedCreationDate() | ||
376 | { | ||
377 | return m_OSSL_Functions.osLoadedCreationDate(); | ||
378 | } | ||
379 | |||
380 | public string osLoadedCreationTime() | ||
381 | { | ||
382 | return m_OSSL_Functions.osLoadedCreationTime(); | ||
383 | } | ||
384 | |||
385 | public string osLoadedCreationID() | ||
386 | { | ||
387 | return m_OSSL_Functions.osLoadedCreationID(); | ||
388 | } | ||
389 | |||
390 | |||
374 | public OSSLPrim Prim; | 391 | public OSSLPrim Prim; |
375 | 392 | ||
376 | [Serializable] | 393 | [Serializable] |