Initial commit

This commit is contained in:
Thorbjoern
2025-05-26 00:46:28 +02:00
commit e5bca03433
3896 changed files with 1434297 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu]
public class RoomPrefs : ScriptableObject
{
public bool doors = false;
public bool furniture = true;
public bool portals = false;
public bool enemies = false;
public void SetDoors (bool doorValue) { doors = doorValue; }
public void SetFurniture (bool furnitureValue) { furniture=furnitureValue; }
public void SetPortals (bool portalsValue) { portals = portalsValue; }
public void SetEnemies (bool enemiesValue) { enemies = enemiesValue; }
}