Advertisement
dastan2

Starbound Beta OpenGL Launcher FIX - launcher.exe

Dec 8th, 2013
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. Download : https://www.mediafire.com/download/kaoa35nl9euaet3
  2.  
  3.  
  4. namespace Starbound_Launcher
  5. {
  6. public partial class Main : Form
  7. {
  8. public Main()
  9. {
  10. InitializeComponent();
  11. }
  12.  
  13. private void bDirect3D_Click(object sender, EventArgs e)
  14. {
  15. Process.Start(@"..\starbound.exe");
  16. Application.Exit();
  17. }
  18.  
  19. private void bOpenGl_Click(object sender, EventArgs e)
  20. {
  21. Process.Start(@"..\starbound_opengl.exe");
  22. Application.Exit();
  23. }
  24.  
  25. private void Main_Shown(object sender, EventArgs e)
  26. {
  27. if (!File.Exists(@"..\starbound.exe"))
  28. {
  29. MessageBox.Show(
  30. @"Please copy launcher.exe to:" + Environment.NewLine + @"Steam\SteamApps\common\Starbound\win32\launcher directory" + Environment.NewLine + @"Then run it.");
  31. Application.Exit();
  32. }
  33. }
  34. }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement