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.
23 lines
463 B
23 lines
463 B
package com.example.jmacro.wjdr.task;
|
|
|
|
import com.example.jmacro.wjdr.JMacro;
|
|
import com.example.jmacro.wjdr.base.ScreenRect;
|
|
|
|
public abstract class BaseTask implements Runnable {
|
|
|
|
/**
|
|
* 脚本持有对象
|
|
*/
|
|
protected JMacro jMacro;
|
|
|
|
/**
|
|
* 应用窗口
|
|
*/
|
|
protected ScreenRect screenRect;
|
|
|
|
public BaseTask(JMacro jMacro, ScreenRect screenRect) {
|
|
this.jMacro = jMacro;
|
|
this.screenRect = screenRect;
|
|
}
|
|
}
|