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.
|
- using RobocraftX.Common;
- using Svelto.ECS;
-
- namespace GamecraftModdingAPI.Blocks
- {
- public class LogicGate : SignalingBlock
- {
- public LogicGate(EGID id) : base(id)
- {
- }
-
- public LogicGate(uint id) : base(new EGID(id, CommonExclusiveGroups.BUILD_LOGIC_BLOCK_GROUP))
- {
- }
- }
- }
|