mirror of
https://gitgud.io/AbstractConcept/privacy-please.git
synced 2024-08-15 00:03:18 +00:00
v 1.0.0
This commit is contained in:
parent
2256f28cf8
commit
12b947317e
52 changed files with 444 additions and 689 deletions
|
@ -0,0 +1,25 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using RimWorld;
|
||||
using Verse;
|
||||
|
||||
namespace Privacy_Please
|
||||
{
|
||||
public class InteractionWorker_NullWorker : InteractionWorker
|
||||
{
|
||||
public InteractionWorker_NullWorker() { }
|
||||
|
||||
public override void Interacted(Pawn initiator, Pawn recipient, List<RulePackDef> extraSentencePacks, out string letterText, out string letterLabel, out LetterDef letterDef, out LookTargets lookTargets)
|
||||
{
|
||||
base.Interacted(initiator, recipient, extraSentencePacks, out letterText, out letterLabel, out letterDef, out lookTargets);
|
||||
letterLabel = null;
|
||||
letterText = null;
|
||||
letterDef = null;
|
||||
}
|
||||
|
||||
public override float RandomSelectionWeight(Pawn initiator, Pawn recipient)
|
||||
{
|
||||
return 0f;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue