University stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LegemiddelNarkotisk.java 174B

12345678
  1. class LegemiddelNarkotisk extends Legemiddel {
  2. int styrke;
  3. LegemiddelNarkotisk(int styrke, int totaltVirkestoff) {
  4. super(totaltVirkestoff);
  5. this.styrke = styrke;
  6. }
  7. }