DEADSOFTWARE

Update assets structure
[cavedroid.git] / core / src / ru / deadsoftware / cavedroid / game / actions / UseItemActionsModule.kt
index 0206d5f82fe9c0fb61511d45e662a7dd1e8456ec..d5e4f4fa80c5cda9a10328c9834a9d4dc7ba089a 100644 (file)
@@ -34,4 +34,20 @@ class UseItemActionsModule {
         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
+    }
+
 }