diff --git a/Raincat.cabal b/Raincat.cabal
--- a/Raincat.cabal
+++ b/Raincat.cabal
@@ -1,5 +1,5 @@
 name:                   Raincat
-version:                1.2
+version:                1.2.1
 cabal-version:          >= 1.8
 build-type:             Simple
 license:                BSD3
@@ -76,11 +76,11 @@
                         Menu.PostVictory
                         Nxt.Audio
                         Nxt.Graphics
-                        Nxt.Input
                         Nxt.Types
                         Panels.ItemPanel
                         Panels.MainPanel
                         Panels.MessagePanel
+                        Paths_Raincat
                         Program.Program
                         Rain.Rain
                         Settings.CatSettings
@@ -89,5 +89,4 @@
                         Settings.RainSettings
                         Settings.UISettings
                         Settings.WorldSettings
-                        UI.ItemPanel
                         World.World
diff --git a/src/Nxt/Input.hs b/src/Nxt/Input.hs
deleted file mode 100644
--- a/src/Nxt/Input.hs
+++ /dev/null
@@ -1,13 +0,0 @@
-module Nxt.Input
-    (InputState) where
-
-
-
-data InputState = InputState
-    {
-        up      :: Bool,
-        left    :: Bool,
-        down    :: Bool,
-        right   :: Bool
-     }
-
diff --git a/src/UI/ItemPanel.hs b/src/UI/ItemPanel.hs
deleted file mode 100644
--- a/src/UI/ItemPanel.hs
+++ /dev/null
@@ -1,11 +0,0 @@
-module UI.ItemPanel
-    (ItemPanel(ItemPanel),
-     itemButtonList) where
-
-import Item.Items
-
-data ItemPanel = ItemPanel
-    {
-        itemButtonlist :: [ItemButton]
-    }
-
