From 968e054158889263373e9e170894d0c822e73d39 Mon Sep 17 00:00:00 2001 From: reidlab Date: Tue, 15 Aug 2023 18:08:11 -0700 Subject: [PATCH] make uicomponents folder --- src/ReplicatedStorage/{ui => uiComponents}/padding.tsx | 0 src/StarterPlayer/StarterPlayerScripts/ui/hotbar/hotbar.tsx | 2 +- src/StarterPlayer/StarterPlayerScripts/ui/hotbar/slot.tsx | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename src/ReplicatedStorage/{ui => uiComponents}/padding.tsx (100%) diff --git a/src/ReplicatedStorage/ui/padding.tsx b/src/ReplicatedStorage/uiComponents/padding.tsx similarity index 100% rename from src/ReplicatedStorage/ui/padding.tsx rename to src/ReplicatedStorage/uiComponents/padding.tsx diff --git a/src/StarterPlayer/StarterPlayerScripts/ui/hotbar/hotbar.tsx b/src/StarterPlayer/StarterPlayerScripts/ui/hotbar/hotbar.tsx index c16eb09..2089b2f 100644 --- a/src/StarterPlayer/StarterPlayerScripts/ui/hotbar/hotbar.tsx +++ b/src/StarterPlayer/StarterPlayerScripts/ui/hotbar/hotbar.tsx @@ -1,7 +1,7 @@ import Roact from "@rbxts/roact" import Slot from "./slot" import { useWorldContext } from "../contexts/worldContext" -import Padding from "ReplicatedStorage/ui/padding" +import Padding from "ReplicatedStorage/uiComponents/padding" import { StarterGui } from "@rbxts/services" interface hotbarProps extends Roact.JsxInstanceProperties { diff --git a/src/StarterPlayer/StarterPlayerScripts/ui/hotbar/slot.tsx b/src/StarterPlayer/StarterPlayerScripts/ui/hotbar/slot.tsx index 019453f..9bedcc1 100644 --- a/src/StarterPlayer/StarterPlayerScripts/ui/hotbar/slot.tsx +++ b/src/StarterPlayer/StarterPlayerScripts/ui/hotbar/slot.tsx @@ -2,7 +2,7 @@ import Roact from "@rbxts/roact" import { useEffect } from "@rbxts/roact-hooked" import { useWorldContext } from "../contexts/worldContext" import { ContextActionService, HttpService } from "@rbxts/services" -import Padding from "ReplicatedStorage/ui/padding" +import Padding from "ReplicatedStorage/uiComponents/padding" interface slotProps extends Roact.JsxInstanceProperties { index: number