Skip to content

Instantly share code, notes, and snippets.

@csmith
Created December 2, 2015 06:42
Show Gist options
  • Save csmith/66ac64ed1b2812947846 to your computer and use it in GitHub Desktop.
Save csmith/66ac64ed1b2812947846 to your computer and use it in GitHub Desktop.
Sample code showing old and new action styles for Space Engineers
void Main(string argument)
{
var block = GridTerminalSystem.GetBlockWithName("Beacon");
// Verbose way:
block.GetActionWithName("OnOff").Apply(block);
// Better way:
block.ApplyAction("OnOff");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment