コード例 #1
0
        internal Piercing(IBodyPart source, PiercingUnlocked LocationUnlocked, CreatureStr shortDesc, CreatureStr longDesc)
        {
            parent = source ?? throw new ArgumentNullException(nameof(source));

            piercingUnlocked             = LocationUnlocked ?? throw new ArgumentNullException(nameof(LocationUnlocked));
            allPiercingsShortDescription = shortDesc ?? throw new ArgumentNullException(nameof(shortDesc));
            allPiercingsLongDescription  = longDesc ?? throw new ArgumentNullException(nameof(longDesc));
        }
コード例 #2
0
 public NipplePiercing(IBodyPart source, PiercingUnlocked LocationUnlocked, CreatureStr playerShortDesc, CreatureStr playerLongDesc) : base(source, LocationUnlocked, playerShortDesc, playerLongDesc)
 {
 }