Initial Commit

This commit is contained in:
xypwn
2020-03-24 20:18:39 +01:00
commit dfeb7de33c
70 changed files with 4920 additions and 0 deletions

24
ePartType.h Normal file
View File

@@ -0,0 +1,24 @@
#ifndef EPARTTYPE_H
#define EPARTTYPE_H
namespace PartType
{
enum PartType
{
GateBuffer,
GateNot,
GateAnd,
GateOr,
GateNand,
GateNor,
GateXor,
GateXnor,
IOLowConstant,
IOHighConstant,
IOLightBulb,
IOToggleButton,
IntegratedCircuit,
};
}
#endif // EPARTTYPE_H