mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
@@ -1692,6 +1692,12 @@ namespace OpenSim.Region.ScriptEngine.Shared
|
||||
return ret;
|
||||
}
|
||||
|
||||
static public LSLInteger operator %(LSLInteger i1, LSLInteger i2)
|
||||
{
|
||||
int ret = i1.value % i2.value;
|
||||
return ret;
|
||||
}
|
||||
|
||||
static public LSLInteger operator |(LSLInteger i1, LSLInteger i2)
|
||||
{
|
||||
int ret = i1.value | i2.value;
|
||||
|
||||
Reference in New Issue
Block a user