summaryrefslogtreecommitdiff
path: root/ROUNDS/Photon.Pun.Simple/IVitalsContactReactor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ROUNDS/Photon.Pun.Simple/IVitalsContactReactor.cs')
-rw-r--r--ROUNDS/Photon.Pun.Simple/IVitalsContactReactor.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/ROUNDS/Photon.Pun.Simple/IVitalsContactReactor.cs b/ROUNDS/Photon.Pun.Simple/IVitalsContactReactor.cs
new file mode 100644
index 0000000..202da33
--- /dev/null
+++ b/ROUNDS/Photon.Pun.Simple/IVitalsContactReactor.cs
@@ -0,0 +1,12 @@
+namespace Photon.Pun.Simple;
+
+public interface IVitalsContactReactor : IContactReactor
+{
+ VitalNameType VitalNameType { get; }
+
+ bool AllowOverload { get; }
+
+ bool Propagate { get; }
+
+ double DischargeValue(ContactType contactType = ContactType.Undefined);
+}