mega changes -- transition to Python3
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package CognitiveModel.ModelFiles;
|
||||
|
||||
public class Vision extends Action {
|
||||
|
||||
public Vision() {
|
||||
super(ActionType.VISION, 1000);
|
||||
}
|
||||
|
||||
public Vision(int delay) {
|
||||
super(ActionType.VISION, delay);
|
||||
}
|
||||
|
||||
public Vision(String dref) {
|
||||
super(ActionType.VISION, 1000, dref);
|
||||
}
|
||||
|
||||
public Vision(int delay, String dref) {
|
||||
super(ActionType.VISION, delay, dref);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user