setFormMain() 공개 메소드

public setFormMain ( FormMain f ) : void
f FormMain
리턴 void
예제 #1
0
 private Form makeBlocksEditor()
 {
     if (!ConfigScript.isUseSegaGraphics())
     {
         var f = new BlockEdit();
         f.setFormMain(this);
         return f;
     }
     else
     {
         var f = new SegaBlockEdit();
         return f;
     }
 }
예제 #2
0
 private Form makeBlocksEditor()
 {
     if (!ConfigScript.isUseSegaGraphics())
     {
         var f = new BlockEdit();
         f.setFormMain(this);
         return(f);
     }
     else
     {
         var f = new SegaBlockEdit();
         return(f);
     }
 }