1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
CVDA_Git/src/input/Society.java

20 lines
458 B
Java

package input;
public class Society implements Input{
public String socialReason;
public Society(String newSocialReason){
this.socialReason = newSocialReason;
}
@Override
public String toString(Presentation presentation, Order order) {
return ("Social Reason : " + socialReason);
}
@Override
public boolean research(String search) {
return socialReason.equals(search);
}
}