15 lines
276 B
C#
15 lines
276 B
C#
using Unity.Collections;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public struct Recipe
|
|
{
|
|
public FixedList32Bytes<(int, int)> Inputs;
|
|
|
|
public int OutputProductHandle;
|
|
|
|
public int OutputAmount;
|
|
|
|
public int ProductionTime;
|
|
}
|
|
} |