11 lines
174 B
C
11 lines
174 B
C
#pragma once
|
|
|
|
#include "ItemType.h"
|
|
|
|
// Items on belts have no persistent identity across ticks; see
|
|
// architecture.md "Belt Subsystem".
|
|
struct Item
|
|
{
|
|
ItemType type;
|
|
};
|