mirror of
https://github.com/FalloutCollaborationProject/FCP-Tools.git
synced 2026-07-27 16:59:37 -07:00
16 lines
427 B
C#
16 lines
427 B
C#
namespace FCP.Core.Buildings;
|
|
|
|
[UsedImplicitly(ImplicitUseTargetFlags.WithMembers)]
|
|
public class CompProperties_TerminalHacking : CompProperties
|
|
{
|
|
public List<ThingDef> rewardPool;
|
|
public int wordLength = 6;
|
|
public int maxAttempts = 4;
|
|
public int lockoutDurationHours = 6;
|
|
public int wordCount = 12;
|
|
|
|
public CompProperties_TerminalHacking()
|
|
{
|
|
compClass = typeof(CompTerminalHacking);
|
|
}
|
|
} |