forked from sarbian/ModuleManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProtoPatch.cs
More file actions
27 lines (25 loc) · 897 Bytes
/
Copy pathProtoPatch.cs
File metadata and controls
27 lines (25 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;
using ModuleManager.Patches.PassSpecifiers;
namespace ModuleManager.Patches
{
public class ProtoPatch
{
public readonly UrlDir.UrlConfig urlConfig;
public readonly Command command;
public readonly string nodeType;
public readonly string nodeName;
public readonly string needs = null;
public readonly string has = null;
public readonly IPassSpecifier passSpecifier;
public ProtoPatch(UrlDir.UrlConfig urlConfig, Command command, string nodeType, string nodeName, string needs, string has, IPassSpecifier passSpecifier)
{
this.urlConfig = urlConfig;
this.command = command;
this.nodeType = nodeType;
this.nodeName = nodeName;
this.needs = needs;
this.has = has;
this.passSpecifier = passSpecifier;
}
}
}