summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/TodoItem.java
blob: 2c4bfd96416e513dbfb2da032a4f8bb8f34a1f99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.madore.damlengine;

public abstract class TodoItem {

    public TodoDeque ownerDeque;
    public Context ctx;
    public TodoItem caller;

    public TodoItem(Context ctx, TodoItem caller) {
	this.ctx = ctx;
	this.caller = caller;
    }

    public abstract void handle();

}