DEADSOFTWARE

Update assets structure
[cavedroid.git] / core / src / ru / deadsoftware / cavedroid / game / actions / UseItemActionsModule.kt
index aeb64f07459a966917b08ea3ba7a24ff92f7149e..d5e4f4fa80c5cda9a10328c9834a9d4dc7ba089a 100644 (file)
@@ -26,4 +26,28 @@ class UseItemActionsModule {
         return action
     }
 
+    @Binds
+    @IntoMap
+    @StringKey(UseEmptyBucketAction.ACTION_KEY)
+    @GameScope
+    fun bindUseEmptyBucketAction(action: UseEmptyBucketAction): IUseItemAction {
+        return action
+    }
+
+    @Binds
+    @IntoMap
+    @StringKey(UsePigSpawnEggAction.ACTION_KEY)
+    @GameScope
+    fun bindUsePigSpawnEgg(action: UsePigSpawnEggAction): IUseItemAction {
+        return action
+    }
+
+    @Binds
+    @IntoMap
+    @StringKey(UseBedAction.ACTION_KEY)
+    @GameScope
+    fun bindUseBedAction(action: UseBedAction): IUseItemAction {
+        return action
+    }
+
 }