Example #1
0
    public static SolaEngine getInstance()
    {
        if (_instance == null)
        {
            _instance = new SolaEngine();
            _instance._startUp();
        }

        return(_instance);
    }