summaryrefslogtreecommitdiff
path: root/ROUNDS/Photon.Pun.Simple/IInventoryable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ROUNDS/Photon.Pun.Simple/IInventoryable.cs')
-rw-r--r--ROUNDS/Photon.Pun.Simple/IInventoryable.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/ROUNDS/Photon.Pun.Simple/IInventoryable.cs b/ROUNDS/Photon.Pun.Simple/IInventoryable.cs
new file mode 100644
index 0000000..bdba2f6
--- /dev/null
+++ b/ROUNDS/Photon.Pun.Simple/IInventoryable.cs
@@ -0,0 +1,6 @@
+namespace Photon.Pun.Simple;
+
+public interface IInventoryable<T> : IContactable
+{
+ T Size { get; }
+}