Dice rolling

This commit is contained in:
2022-10-30 15:02:17 +01:00
parent 40c8963ec9
commit 1efd7c662b
28 changed files with 3878 additions and 210 deletions

18
Assets/Scripts/Player.cs Normal file
View File

@@ -0,0 +1,18 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Player : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}