Improve Paper UI, allow an to entity configure how it's UI looks (#13494)
Co-authored-by: Eoin Mcloughlin <helloworld@eoinrul.es>
This commit is contained in:
@@ -8,11 +8,13 @@ namespace Content.Shared.Paper
|
||||
public sealed class PaperBoundUserInterfaceState : BoundUserInterfaceState
|
||||
{
|
||||
public readonly string Text;
|
||||
public readonly List<string> StampedBy;
|
||||
public readonly PaperAction Mode;
|
||||
|
||||
public PaperBoundUserInterfaceState(string text, PaperAction mode = PaperAction.Read)
|
||||
public PaperBoundUserInterfaceState(string text, List<string> stampedBy, PaperAction mode = PaperAction.Read)
|
||||
{
|
||||
Text = text;
|
||||
StampedBy = stampedBy;
|
||||
Mode = mode;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user