This commit is contained in:
alice 2024-10-20 19:59:41 +02:00
parent a5d6ae91ac
commit a0083e1862
8 changed files with 106 additions and 9 deletions

View file

@ -54,7 +54,7 @@ local function create(class_or_instance: string|Instance): (Props) -> Instance
end
type Props = { [any]: any }
return (create :: any) ::
return (create :: any) ::
( (class: "CanvasGroup") -> (r.vCanvasGroup) -> CanvasGroup )
& ( (class: "Frame") -> (r.vFrame) -> Frame )
& ( (class: "ImageButton") -> (r.vImageButton) -> ImageButton )
@ -102,3 +102,4 @@ return (create :: any) ::
& ( (class: "Part") -> (r.vPart) -> Part )
& ( (class: "Model") -> (r.vModel) -> Model )
& ( (class: "MeshPart") -> (r.vMeshPart) -> MeshPart )
& ( (class: "Highlight") -> (r.vHighlight) -> Highlight )