Files
GameVsJam/3d Prototyp/Assets/Scripts/Utility/ShowOnlyAttribute.cs
Simon Lübeß 80e25e2d81 Greatest Time simulation ever
Außerdem:
- Coole Singletons, möglicherweise die geilsten Singletons, die jemals in Unity implementiert wurden
- Utility Klassen nach Utility Verschoben
- Schlaganfallsymptome in Developer entfernt
2024-04-04 19:41:36 +02:00

11 lines
231 B
C#

using UnityEngine;
namespace Utility
{
/// <summary>
/// Das Feld wird im Inspector nur angezeigt und kann nicht verändert werden.
/// </summary>
public class ShowOnlyAttribute : PropertyAttribute
{
}
}