Beispiel #1
0
 public GameCardGameTextArea(GameCardGameTextAreaOptions options)
 {
     Name = options.Name ?? "Text Area";
     X    = options.X == 0 ? 0 : options.X;
     Y    = options.Y == 0 ? 0 : options.Y;
     Text = options.Text ?? "Text";
 }
Beispiel #2
0
 public GameCardGameTextArea(GameCardGameTextAreaOptions options)
 {
     Name = options.Name ?? "Text Area";
     X = options.X == 0 ? 0 : options.X;
     Y = options.Y == 0 ? 0 : options.Y;
     Text = options.Text ?? "Text";
 }