예제 #1
0
        private void SetArgument(int index)
        {
            StoryArgValue proxy = new StoryArgValue();

            proxy.SetArgument(index);
            m_Proxy = proxy;
        }
예제 #2
0
 private void CopyFrom(StoryArgValue other)
 {
     m_ArgIndex  = other.m_ArgIndex;
     m_Value     = other.m_Value;
     m_HaveValue = other.m_HaveValue;
 }
예제 #3
0
        private StoryArgValue NewValueObject()
        {
            StoryArgValue obj = new StoryArgValue();

            return(obj);
        }