diff options
Diffstat (limited to 'ROUNDS/Photon.Pun.Simple.ContactGroups/ContactGroupValues.cs')
-rw-r--r-- | ROUNDS/Photon.Pun.Simple.ContactGroups/ContactGroupValues.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ROUNDS/Photon.Pun.Simple.ContactGroups/ContactGroupValues.cs b/ROUNDS/Photon.Pun.Simple.ContactGroups/ContactGroupValues.cs new file mode 100644 index 0000000..7e13a5c --- /dev/null +++ b/ROUNDS/Photon.Pun.Simple.ContactGroups/ContactGroupValues.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using UnityEngine; + +namespace Photon.Pun.Simple.ContactGroups; + +[Serializable] +public class ContactGroupValues +{ + [SerializeField] + public List<float> values = new List<float> { 1f }; +} |