Last active
February 12, 2016 12:18
-
-
Save miquelbeltran/5341a87500be820a0a2b 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 GameData { | |
public final String hello = "Hello Dagger"; | |
} |
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
import javax.inject.Inject; | |
public class GameSession { | |
@Inject | |
public GameData data; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment