GameVsJam/3d Prototyp/Assets/Scripts/Developer.cs

17 lines
336 B
C#
Raw Normal View History

2024-04-04 15:26:31 +02:00
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;
public void UpdateEfficiency()
{
// TODO: Implement
}
2024-04-04 15:26:31 +02:00
}