Skip to content

Instantly share code, notes, and snippets.

@csmith
Created December 2, 2015 06:27
Show Gist options
  • Save csmith/d2aaa3beb9588b44309a to your computer and use it in GitHub Desktop.
Save csmith/d2aaa3beb9588b44309a to your computer and use it in GitHub Desktop.
Using script storage in Space Engineers programmable blocks
void Main(string argument)
{
// Read some persisted data from Storage
Echo("Argument from last time was " + Storage);
// Write some data to Storage
Storage = argument;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment