summaryrefslogtreecommitdiff
path: root/sources/events/VSProcessEvent.java
blob: 28f6b86940abc7936f0d2c21befcc71a016726dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package events;

import core.VSProcess;
import prefs.VSPrefs;

abstract public class VSProcessEvent implements VSEvent {
    protected VSProcess process;
    protected VSPrefs prefs;

    public void init(VSProcess process) {
        this.process = process;
        this.prefs = process.getPrefs();
    }

    abstract public void onStart();
}