diff options
Diffstat (limited to 'RayRoom/Core/Structure.cs')
-rw-r--r-- | RayRoom/Core/Structure.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/RayRoom/Core/Structure.cs b/RayRoom/Core/Structure.cs new file mode 100644 index 0000000..9947d60 --- /dev/null +++ b/RayRoom/Core/Structure.cs @@ -0,0 +1,17 @@ +namespace RayRoom.Core +{ + internal class Structure + { + private List<ICastObject> structures; + + public void AddAudioSource(AudioSource audioSource) + { + + } + + public void AddCastObject(ICastObject castObject) + { + + } + } +} |