GameManager etwas mehr gefüllt

This commit is contained in:
Simon Lübeß
2024-04-04 15:26:31 +02:00
parent 06b096b907
commit 089b55658c
6 changed files with 470 additions and 6 deletions

View File

@ -0,0 +1,11 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Developer : MonoBehaviour
{
/// <summary>
/// Gibt die Effizienz des Entwicklers in Prozent zurück.
/// </summary>
public float Efficiency => 1.0f;
}