15 lines
277 B
C#
15 lines
277 B
C#
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);
|
|
}
|
|
}
|
|
}
|