Move screen package to client package
This commit is contained in:
parent
f12965fc6c
commit
6f1f43f36a
|
@ -1,4 +1,4 @@
|
|||
package net.shadowfacts.phycon.screen
|
||||
package net.shadowfacts.phycon.client.screen
|
||||
|
||||
import net.minecraft.client.util.math.MatrixStack
|
||||
import net.minecraft.util.Identifier
|
|
@ -1,7 +1,6 @@
|
|||
package net.shadowfacts.phycon.screen
|
||||
package net.shadowfacts.phycon.client.screen
|
||||
|
||||
import net.minecraft.client.gui.widget.AbstractPressableButtonWidget
|
||||
import net.minecraft.text.Text
|
||||
import net.shadowfacts.phycon.util.FriendlyNameable
|
||||
import net.shadowfacts.phycon.util.RotatableEnum
|
||||
import net.shadowfacts.phycon.util.next
|
|
@ -1,19 +1,11 @@
|
|||
package net.shadowfacts.phycon.screen
|
||||
package net.shadowfacts.phycon.client.screen
|
||||
|
||||
import net.minecraft.client.MinecraftClient
|
||||
import net.minecraft.text.LiteralText
|
||||
import net.minecraft.text.Text
|
||||
import net.minecraft.util.Identifier
|
||||
import net.shadowfacts.cacao.CacaoScreen
|
||||
import net.shadowfacts.cacao.window.Window
|
||||
import net.shadowfacts.cacao.geometry.Axis
|
||||
import net.shadowfacts.cacao.geometry.Size
|
||||
import net.shadowfacts.cacao.util.Color
|
||||
import net.shadowfacts.cacao.util.texture.NinePatchTexture
|
||||
import net.shadowfacts.cacao.util.texture.Texture
|
||||
import net.shadowfacts.cacao.view.*
|
||||
import net.shadowfacts.cacao.view.button.Button
|
||||
import net.shadowfacts.cacao.view.textfield.TextField
|
||||
import net.shadowfacts.cacao.viewcontroller.TabViewController
|
||||
import net.shadowfacts.cacao.viewcontroller.ViewController
|
||||
import net.shadowfacts.kiwidsl.dsl
|
|
@ -1,4 +1,4 @@
|
|||
package net.shadowfacts.phycon.screen.console
|
||||
package net.shadowfacts.phycon.client.screen.console
|
||||
|
||||
import net.minecraft.client.MinecraftClient
|
||||
import net.minecraft.text.TranslatableText
|
|
@ -1,4 +1,4 @@
|
|||
package net.shadowfacts.phycon.screen.console
|
||||
package net.shadowfacts.phycon.client.screen.console
|
||||
|
||||
import net.minecraft.text.TranslatableText
|
||||
import net.minecraft.util.Identifier
|
|
@ -1,4 +1,4 @@
|
|||
package net.shadowfacts.phycon.screen.console
|
||||
package net.shadowfacts.phycon.client.screen.console
|
||||
|
||||
import net.minecraft.client.MinecraftClient
|
||||
import net.minecraft.text.TranslatableText
|
||||
|
@ -6,11 +6,10 @@ import net.shadowfacts.cacao.geometry.Axis
|
|||
import net.shadowfacts.cacao.util.Color
|
||||
import net.shadowfacts.cacao.view.Label
|
||||
import net.shadowfacts.cacao.view.StackView
|
||||
import net.shadowfacts.cacao.view.View
|
||||
import net.shadowfacts.cacao.viewcontroller.ViewController
|
||||
import net.shadowfacts.kiwidsl.dsl
|
||||
import net.shadowfacts.phycon.block.DeviceBlockEntity
|
||||
import net.shadowfacts.phycon.screen.ClipboardButton
|
||||
import net.shadowfacts.phycon.client.screen.ClipboardButton
|
||||
|
||||
/**
|
||||
* @author shadowfacts
|
|
@ -1,4 +1,4 @@
|
|||
package net.shadowfacts.phycon.screen.console
|
||||
package net.shadowfacts.phycon.client.screen.console
|
||||
|
||||
import net.minecraft.client.MinecraftClient
|
||||
import net.minecraft.text.TranslatableText
|
|
@ -1,13 +1,10 @@
|
|||
package net.shadowfacts.phycon.screen.console
|
||||
package net.shadowfacts.phycon.client.screen.console
|
||||
|
||||
import net.minecraft.block.entity.BlockEntity
|
||||
import net.minecraft.client.MinecraftClient
|
||||
import net.minecraft.text.TranslatableText
|
||||
import net.shadowfacts.cacao.geometry.Axis
|
||||
import net.shadowfacts.cacao.util.Color
|
||||
import net.shadowfacts.cacao.view.Label
|
||||
import net.shadowfacts.cacao.view.StackView
|
||||
import net.shadowfacts.cacao.view.View
|
||||
import net.shadowfacts.cacao.view.button.ToggleButton
|
||||
import net.shadowfacts.cacao.view.textfield.NumberField
|
||||
import net.shadowfacts.cacao.viewcontroller.ViewController
|
|
@ -1,4 +1,4 @@
|
|||
package net.shadowfacts.phycon.screen.console
|
||||
package net.shadowfacts.phycon.client.screen.console
|
||||
|
||||
import net.minecraft.block.entity.BlockEntity
|
||||
import net.minecraft.client.MinecraftClient
|
|
@ -1,4 +1,4 @@
|
|||
package net.shadowfacts.phycon.screen.console
|
||||
package net.shadowfacts.phycon.client.screen.console
|
||||
|
||||
import net.minecraft.client.MinecraftClient
|
||||
import net.minecraft.text.TranslatableText
|
|
@ -1,4 +1,4 @@
|
|||
package net.shadowfacts.phycon.screen.console
|
||||
package net.shadowfacts.phycon.client.screen.console
|
||||
|
||||
import net.minecraft.client.MinecraftClient
|
||||
import net.minecraft.text.TranslatableText
|
|
@ -8,7 +8,7 @@ import net.minecraft.util.Identifier
|
|||
import net.shadowfacts.phycon.PhysicalConnectivity
|
||||
import net.shadowfacts.phycon.block.DeviceBlock
|
||||
import net.shadowfacts.phycon.block.DeviceBlockEntity
|
||||
import net.shadowfacts.phycon.screen.console.DeviceConsoleScreen
|
||||
import net.shadowfacts.phycon.client.screen.console.DeviceConsoleScreen
|
||||
|
||||
/**
|
||||
* @author shadowfacts
|
||||
|
|
Loading…
Reference in New Issue