This commit is contained in:
lx
2026-07-06 14:01:11 -04:00
commit c4f97d729d
16468 changed files with 935321 additions and 0 deletions
@@ -0,0 +1,15 @@
local UpsellFlow = require(script.Parent.Parent.UpsellFlow)
local function getUpsellFlow(platform)
if platform == Enum.Platform.Windows or platform == Enum.Platform.OSX then
return UpsellFlow.Web
elseif platform == Enum.Platform.IOS or platform == Enum.Platform.Android or platform == Enum.Platform.UWP then
return UpsellFlow.Mobile
elseif platform == Enum.Platform.XBoxOne then
return UpsellFlow.Xbox
end
return UpsellFlow.None
end
return getUpsellFlow