/home/caleb/ASDV-Java/Semester 2/Assignments/lab8_2_CalebFontenot/src/main/java/com/calebfontenot/lab8_2_calebfontenot/interfacesGrouped/fun/German.java
/*
 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
 */
package com.calebfontenot.lab8_2_calebfontenot.interfacesGrouped.fun;

/**
 *
 * @author caleb
 */
public class German implements European {

    @Override
    public void whatCountry()
    {
        System.out.println("+++ I am from Germany! +++");
    }
    @Override
    public void speakLanguage()
    {
        System.out.println("speak German");
    }

    @Override
    public void practiceReligion()
    {
        System.out.println("Protestant");
    }

    @Override
    public void WWI()
    {
        System.out.println("in WW1 the Germans lost -- Axis!");
    }
    

    @Override
    public void WWII()
    {
        System.out.println("in WW2 the Germans lost -- Axis!");
    }
    
}