Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros
DesignerTransactionCloseEventArgs.cs
Go to the documentation of this file.
2
4{
5 public bool TransactionCommitted { get; }
6
7 public bool LastTransaction { get; }
8
9 [Obsolete("This constructor has been deprecated. Use DesignerTransactionCloseEventArgs(bool, bool) instead.")]
11 : this(commit, lastTransaction: true)
12 {
13 }
14
15 public DesignerTransactionCloseEventArgs(bool commit, bool lastTransaction)
16 {
17 TransactionCommitted = commit;
18 LastTransaction = lastTransaction;
19 }
20}