Created
May 28, 2017 03:35
-
-
Save bffcorreia/139b9a92e254267b1cab89ceb3f029ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class EmotionManager { | |
private final PeanutButterJar peanutButterJar; | |
private final Benfica benfica; | |
@Inject public EmotionManager(PeanutButterJar peanutButterJar, Benfica benfica) { | |
this.peanutButterJar = peanutButterJar; | |
this.benfica = benfica; | |
} | |
@Inject public angryEmotionsRegister(AngryRegister angryRegister) { | |
angryRegister.regist(this); | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment