Advertisement
Whiplash141

Whip's VS Template

Jun 26th, 2017
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.36 KB | None | 0 0
  1. #region pre-script
  2. #if DEBUG
  3. using System;
  4. using System.Text;
  5. using System.Collections;
  6. using System.Collections.Generic;
  7. using VRageMath;
  8. using VRage.Game;
  9. using Sandbox.ModAPI.Interfaces;
  10. using Sandbox.ModAPI.Ingame;
  11. using Sandbox.Game.EntityComponents;
  12. using VRage.Game.Components;
  13. using VRage.Collections;
  14. using VRage.Game.ObjectBuilders.Definitions;
  15. using VRage.Game.ModAPI.Ingame;
  16. using SpaceEngineers.Game.ModAPI.Ingame;
  17.  
  18. namespace IngameScript
  19. {
  20.     public class Program : MyGridProgram
  21.     {
  22. #endif
  23. #endregion
  24. //
  25.         //=======================================================================================
  26.         //////////////////////////START//////////////////////////////////////////
  27.         //=======================================================================================
  28.  
  29.         //Place your code between START and END
  30.         public Program()
  31.         {
  32.  
  33.         }
  34.  
  35.         public void Save()
  36.         {
  37.  
  38.         }
  39.  
  40.         public void Main(string argument)
  41.         {
  42.            
  43.         }
  44.  
  45.         //=======================================================================================
  46.         //////////////////////////END//////////////////////////////////////////
  47.         //=======================================================================================
  48. #region post-script
  49. #if DEBUG
  50.     }
  51. }
  52. #endif
  53. #endregion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement