A stable modding interface between Techblox and mods https://mod.exmods.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
321B

  1. using RobocraftX.Common;
  2. using Svelto.ECS;
  3. namespace TechbloxModdingAPI.Blocks
  4. {
  5. public class LogicGate : SignalingBlock
  6. {
  7. public LogicGate(EGID id) : base(id)
  8. {
  9. }
  10. public LogicGate(uint id) : base(new EGID(id, CommonExclusiveGroups.LOGIC_BLOCK_GROUP))
  11. {
  12. }
  13. }
  14. }