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.

27 lines
638B

  1. namespace TechbloxModdingAPI.Blocks
  2. {
  3. using RobocraftX.Common;
  4. using Svelto.ECS;
  5. public class LogicGate : SignalingBlock
  6. {
  7. /// <summary>
  8. /// Constructs a(n) LogicGate object representing an existing block.
  9. /// </summary>
  10. public LogicGate(EGID egid) :
  11. base(egid)
  12. {
  13. }
  14. /// <summary>
  15. /// Constructs a(n) LogicGate object representing an existing block.
  16. /// </summary>
  17. public LogicGate(uint id) :
  18. base(new EGID(id, CommonExclusiveGroups.LOGIC_BLOCK_GROUP))
  19. {
  20. }
  21. }
  22. }