Skip to content

Instantly share code, notes, and snippets.

View jjstaats's full-sized avatar

Jonathan jjstaats

View GitHub Profile
@jjstaats
jjstaats / Auto Manufacture.cs
Last active June 19, 2022 20:42 — forked from thexa4/ATV Firmware.cs
Space Engineers scripts
class ItemTarget {
public ItemTarget(string category, string subtype, string blueprintCategory, string blueprintSubtype, long destCount)
{
Type = new MyItemType(category, subtype);
Blueprint = MyDefinitionId.Parse(blueprintCategory + "/" + blueprintSubtype);
DestCount = destCount;
}
public ItemTarget(MyItemType type, long destCount)
{