0.397.0.329146

This commit is contained in:
CloneTrooper1019 2019-08-14 16:02:31 -05:00
parent 5d5da0d6f0
commit ee510c81fb
2 changed files with 18 additions and 2 deletions

View File

@ -1,5 +1,5 @@
// Auto-generated list of creatable Roblox classes. // Auto-generated list of creatable Roblox classes.
// Updated as of 0.396.0.327208 // Updated as of 0.397.0.329146
using System; using System;
@ -1011,6 +1011,7 @@ namespace RobloxFiles
} }
public Color3 BorderColor3 = Color3.FromRGB(27, 42, 53); public Color3 BorderColor3 = Color3.FromRGB(27, 42, 53);
public BorderMode BorderMode = BorderMode.Outline;
public int BorderSizePixel = 1; public int BorderSizePixel = 1;
public bool ClipsDescendants = false; public bool ClipsDescendants = false;
@ -1835,6 +1836,14 @@ namespace RobloxFiles
} }
} }
public class MemStorageService : Instance
{
public MemStorageService()
{
IsService = true;
}
}
public class Message : Instance public class Message : Instance
{ {
public string Text = ""; public string Text = "";

View File

@ -1,5 +1,5 @@
// Auto-generated list of Roblox enums. // Auto-generated list of Roblox enums.
// Updated as of 0.396.0.327208 // Updated as of 0.397.0.329146
namespace RobloxFiles.Enums namespace RobloxFiles.Enums
{ {
@ -176,6 +176,13 @@ namespace RobloxFiles.Enums
Unknown = 17 Unknown = 17
} }
public enum BorderMode
{
Outline,
Middle,
Inset
}
public enum BreakReason public enum BreakReason
{ {
Other, Other,