Skip to content

Commit

Permalink
feat: update generated files [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Jan 8, 2025
1 parent dca3fb6 commit b41fbd0
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
30 changes: 30 additions & 0 deletions RobloxTypes/Generated/Enums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,18 @@ public interface Type : EnumItem
public static extern EnumItem[] GetEnumItems();
}

public static class AdFormat
{
public interface Type : EnumItem
{
}

public static extern Type RewardedVideo { get; }

/// <summary>Returns an array of all <see cref="EnumItem"/> options available for this enum.</summary>
public static extern EnumItem[] GetEnumItems();
}

public static class AdShape
{
public interface Type : EnumItem
Expand Down Expand Up @@ -2925,6 +2937,7 @@ public interface Type : EnumItem
{
}

public static extern Type Custom { get; }
public static extern Type UIHover { get; }
public static extern Type UIClick { get; }
public static extern Type UINotification { get; }
Expand Down Expand Up @@ -4902,6 +4915,7 @@ public interface Type : EnumItem
public static extern Type MaxOutfits { get; }
public static extern Type PurchaseFailure { get; }
public static extern Type UnknownFailure { get; }
public static extern Type TokenInvalid { get; }

/// <summary>Returns an array of all <see cref="EnumItem"/> options available for this enum.</summary>
public static extern EnumItem[] GetEnumItems();
Expand Down Expand Up @@ -5714,6 +5728,22 @@ public interface Type : EnumItem
public static extern EnumItem[] GetEnumItems();
}

public static class ShowAdResult
{
public interface Type : EnumItem
{
}

public static extern Type PlayerIneligible { get; }
public static extern Type ExperienceIneligible { get; }
public static extern Type NotShown { get; }
public static extern Type ShowCompleted { get; }
public static extern Type ShowInterrupted { get; }

/// <summary>Returns an array of all <see cref="EnumItem"/> options available for this enum.</summary>
public static extern EnumItem[] GetEnumItems();
}

public static class SignalBehavior
{
public interface Type : EnumItem
Expand Down
10 changes: 10 additions & 0 deletions RobloxTypes/Generated/None.cs
Original file line number Diff line number Diff line change
Expand Up @@ -842,12 +842,18 @@ public interface AudioSearchParams : ICreatableInstance
public interface AuroraService : IServiceInstance
{
public new AuroraService Clone();
public object[] GetDesyncedInstances();
public int GetRemoteWorldStepId();
public Instance GetServerView(Instance target);
public int GetWorldStepId();
public bool IsDesynced(Instance target);
public void NetDesync(Instance target);
public void NetSync(Instance target);
public void SetIncomingReplicationLag(float seconds);
public void StepPhysics(int worldSteps, Instance[]? parts = null);
public void UpdateProperties(Instance target);
public ScriptSignal<Instance> Desynced { get; }
public ScriptSignal<Instance> Synced { get; }
}

public interface AvatarChatService : IServiceInstance
Expand Down Expand Up @@ -3022,8 +3028,11 @@ public interface HapticEffect : ICreatableInstance
{
public new HapticEffect Clone();
public bool Looped { get; set; }
public Vector3 Position { get; set; }
public float Radius { get; set; }
public Enum.HapticEffectType.Type Type { get; set; }
public void Play();
public void SetWaveformKeys(object[] keys);
public void Stop();
}

Expand Down Expand Up @@ -4164,6 +4173,7 @@ public partial interface Workspace : WorldRoot, IServiceInstance
public Enum.ClientAnimatorThrottlingMode.Type ClientAnimatorThrottling { get; set; }
public Camera? CurrentCamera { get; set; }
public float DistributedGameTime { get; set; }
public bool FallHeightEnabled { get; set; }
public float FallenPartsDestroyHeight { get; set; }
public Vector3 GlobalWind { get; set; }
public float Gravity { get; set; }
Expand Down

0 comments on commit b41fbd0

Please sign in to comment.