fixed package mismatch
This commit is contained in:
22
Java/ProjectModels/CognitiveModel/ModelFiles/Vision.java
Normal file
22
Java/ProjectModels/CognitiveModel/ModelFiles/Vision.java
Normal file
@@ -0,0 +1,22 @@
|
||||
package 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