123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- namespace Cobble {
- public partial class TileSearchDialog : Form {
- public TileSearchDialog(int oldId, int newId) {
- InitializeComponent();
- udOldId.Value = oldId;
- udNewId.Value = newId;
- }
- public int OldId {
- get {
- return (int)udOldId.Value;
- }
- }
- public int NewId {
- get {
- return (int)udNewId.Value;
- }
- }
- }
- }
|