This commit is contained in:
brausjonas
2023-01-29 00:25:54 +01:00
parent a6dd6752c1
commit da8ce4b425
19 changed files with 950 additions and 22 deletions
+4 -1
View File
@@ -2,8 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Player : MonoBehaviour
public abstract class Player : MonoBehaviour
{
public string name = "";
public bool activated = false;
protected bool wurfelt = false;
@@ -24,4 +25,6 @@ public class Player : MonoBehaviour
{
activated = false;
}
public abstract void Init();
}