private void SetVariable(string name)
        {
            StoryVarValue proxy = new StoryVarValue();

            proxy.SetVariable(name);
            m_Proxy = proxy;
        }
 private void CopyFrom(StoryVarValue other)
 {
     m_VariableName = other.m_VariableName;
     m_Value        = other.m_Value;
     m_HaveValue    = other.m_HaveValue;
 }
        private StoryVarValue NewValueObject()
        {
            StoryVarValue obj = new StoryVarValue();

            return(obj);
        }