generate simple room
This commit is contained in:
14
Assets/Escape Room Engine/Engine/Scripts/Module.cs
Normal file
14
Assets/Escape Room Engine/Engine/Scripts/Module.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Escape_Room_Engine.Engine.Scripts
|
||||
{
|
||||
public class Module
|
||||
{
|
||||
protected List<ModuleType> _types = new();
|
||||
|
||||
public bool IsType(ModuleType type)
|
||||
{
|
||||
return _types.Contains(type);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user