Example #1
0
    protected void SetState(string state)
    {
#if VZ_GAME
        VZUtl.Log("SetState: from " + mState + " to " + state);
#endif
        mPrevState = mState;
        mState     = state;
    }
Example #2
0
    void Log(string msg)
    {
#if VZ_GAME
        VZUtl.Log(msg);
#else
        Debug.Log(msg);
#endif
    }