FormLaunch.cs 892 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using GameEditorPlugin.Tools;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace CommonTest
  11. {
  12. public partial class FormLaunch : Form
  13. {
  14. public FormLaunch()
  15. {
  16. InitializeComponent();
  17. }
  18. private void button_Astar_Click(object sender, EventArgs e)
  19. {
  20. new FormAstar().Show();
  21. }
  22. private void button_Collision_Click(object sender, EventArgs e)
  23. {
  24. new FormCollision().Show();
  25. }
  26. private void button_SceneGraph_Click(object sender, EventArgs e)
  27. {
  28. new FormSceneGraph2D().Show();
  29. }
  30. private void listView1_CacheVirtualItems(object sender, CacheVirtualItemsEventArgs e)
  31. {
  32. }
  33. }
  34. }