Villeicht fix 3, villeicht ultimatieve zerstörung

This commit is contained in:
GodGodGod20081
2026-08-20 11:56:38 +02:00
parent cf0d5e24ad
commit 556c1d23c5
1629 changed files with 46203 additions and 164976 deletions
@@ -0,0 +1,33 @@
using UnityEngine;
using UnityEngine.TestTools;
using NUnit.Framework;
using System.Collections;
#if ENABLE_INPUT_SYSTEM && NEW_INPUT_SYSTEM_INSTALLED
using UnityEngine.InputSystem;
#endif
// This package does not contain any runtim components, therefore
// this test is only a placeholder.
[TestFixture]
class RuntimeExampleTest {
[SetUp]
public void SetUp()
{
#if ENABLE_INPUT_SYSTEM && NEW_INPUT_SYSTEM_INSTALLED
if (Keyboard.current == null)
{
InputSystem.AddDevice<Keyboard>();
}
#endif
}
[Test]
public void PlayModeSampleTestSimplePasses()
{
// Use the Assert class to test conditions.
}
}