proto() 공개 메소드

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

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