diff options
Diffstat (limited to 'GameCode/NextArt.cs')
-rw-r--r-- | GameCode/NextArt.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/GameCode/NextArt.cs b/GameCode/NextArt.cs new file mode 100644 index 0000000..9300887 --- /dev/null +++ b/GameCode/NextArt.cs @@ -0,0 +1,9 @@ +using UnityEngine; + +public class NextArt : MonoBehaviour +{ + private void Start() + { + ArtHandler.instance.NextArt(); + } +} |