Ejemplo n.º 1
0
        public GroupForm()
        {
            groupId = -1;
            InitializeComponent();

            m_mySql = new ClientMySQL();
            m_mySql.Connect();
            m_commander = Commander.GetCommander();
            point       = new Vector();
            m_storage   = HistoryProcessor.GetHProcessor();
        }
Ejemplo n.º 2
0
        public Material()
        {
            m_objectName = null;

            m_resPaths = null;

            m_texturesList  = null;
            m_templatesList = null;
            m_templateItems = null;

            m_mySql = new ClientMySQL();
            m_mySql.Connect();

            m_translates = new Translate(m_templateDir + "/");

            if (saveMaterialThread == null)
            {
                saveMaterialThread = new Thread(new ThreadStart(ShowSaveMaterialWnd));
                saveMaterialThread.Start();
            }
        }
Ejemplo n.º 3
0
 public void UpdateConnection()
 {
     m_mySql.Connect();
 }