123456789101112131415161718192021222324252627282930313233 |
- using CommonAI.Zone;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace TestCDNBenchMark
- {
- public partial class TestForm : Form
- {
- public TestForm()
- {
- InitializeComponent();
- }
- private void TestForm_Load(object sender, EventArgs e)
- {
- // Equip data = new Equip();
- // data.equipDecom = new List<EquipDecompos>();
- // for (int i = 0; i < 10; i++)
- // {
- // data.equipDecom.Add(new EquipDecompos());
- // data.gems.Add("key_"+i.ToString(), new GemNeed());
- // }
- SkillTemplate data = new SkillTemplate();
- }
- }
- }
|