DEADSOFTWARE

Implement dependency injection for game classes #13
[cavedroid.git] / core / src / ru / deadsoftware / cavedroid / game / GameScope.java
1 package ru.deadsoftware.cavedroid.game;
3 import javax.inject.Scope;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
7 @Scope
8 @Retention(RetentionPolicy.RUNTIME)
9 public @interface GameScope {
10 }