示例#1
0
    // Call this if you know you'll *use* the behavior. Returns true if it's
    // ready, false if not.
    bool SyncBehaviorIfNeeded(string behaviorUri)
    {
        if (voosEngine.HasModuleCompiledOnce(behaviorUri))
        {
            return(true);
        }

        return(SyncBehavior(behaviorUri));
    }