clone() 공개 메소드

public clone ( IoState state ) : IoObject
state IoState
리턴 IoObject
예제 #1
0
        public new static IoCoroutine createObject(IoState state)
        {
            IoCoroutine s = new IoCoroutine();

            return(s.clone(state) as IoCoroutine);
        }
예제 #2
0
파일: IoCoroutine.cs 프로젝트: devaspot/io
 public static new IoCoroutine createObject(IoState state)
 {
     IoCoroutine s = new IoCoroutine();
     return s.clone(state) as IoCoroutine;
 }