You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
446 B
17 lines
446 B
package com.fr.start; |
|
|
|
/** |
|
* 设计器主进程入口(无缝更换升级jar包,若使用其他类作为入口,需要重新打包designer.exe等,升级后仍然走的原来逻辑) |
|
* |
|
* 设计器逻辑/UI调试 see MainDesigner/Designer4Debug |
|
* |
|
* @author hades |
|
* @date 2019/8/27 |
|
*/ |
|
public class Designer { |
|
|
|
public static void main(String[] args) { |
|
// 创建进程 |
|
DesignerLauncher.getInstance().start(args); |
|
} |
|
}
|
|
|