Package-level declarations

Types

Link copied to clipboard
open class Cache<T>
Link copied to clipboard
@Singleton
class CommandController @Inject constructor(val soundManager: QuestSoundManager, var mapper: StoryMapper, var stageMapper: StageMapper, val repository: QuestRepository) : ICommandController
Link copied to clipboard
@Singleton
class ConversationRepository @Inject constructor(webservice: DefaultApi, cache: Cache<ConversationDTO>)
Link copied to clipboard
@Singleton
class LogRepository @Inject constructor(fileLogTree: FileLogTree)
Link copied to clipboard
class MissionController @Inject constructor(var commandController: CommandController)
Link copied to clipboard
@Singleton
class NewsRepository @Inject constructor(webservice: DefaultApi, cache: Cache<ArticleSimpleDto>)
Link copied to clipboard
@Singleton
class NoteRepository @Inject constructor(webservice: DefaultApi, cache: Cache<NoteDto>)
Link copied to clipboard
@Singleton
class QuestRepository @Inject constructor(defaultApi: DefaultApi, storyDataCache: Cache<StoryData>, storyCache: Cache<StoryDto>, summaryCache: Cache<Summary>, questCache: Cache<StoryDto>, storyMapper: StoryMapper)
Link copied to clipboard
@Singleton
class QuestSoundManager(val mediaPlayer: MediaPlayer, val soundPool: SoundPool, val context: Context) : IQuestSoundManager
Link copied to clipboard
@Singleton
class SellerRepository @Inject constructor(webservice: DefaultApi, cache: Cache<SellerDto>, dataCache: Cache<StoryData>, itemsCache: Cache<ItemsContainer>)
Link copied to clipboard
@Singleton
class SummaryRepository @Inject constructor(summaryCache: Cache<Summary>)
Link copied to clipboard
@Singleton
class UserRepository @Inject constructor(webservice: DefaultApi, userCache: Cache<Profile>, dataCache: Cache<StoryData>, memberCache: Cache<UserDto>)