This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; eg when in a text file, (execute-shell-command-on-buffer "p4 edit %s") will check out the file in perforce | |
(defun execute-shell-command-on-buffer (shell-command-text) | |
(interactive "MShell command:") | |
(shell-command (format shell-command-text (shell-quote-argument buffer-file-name))) | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct FWidget | |
{ | |
FWidget() : Name() {} | |
FWidget(FString Name) : Name(Name) {} | |
FWidget(const FWidget& Other) : Name(Other.Name) {} | |
void ProcessIntensity(float Intensity) { /** **/ } | |
FString Name; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct FWidget | |
{ | |
FWidget() : Name() {} | |
FWidget(FString Name) : Name(Name) {} | |
FWidget(FWidget Other) : Name(Other.Name) {} | |
void ProcessIntensity(float Intensity) { /** **/ } | |
FString Name; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Log uploaded on Friday, September 1, 2023, 4:36:55 AM | |
Loaded mods: | |
Prepatcher(zetrith.prepatcher): 0DataAssembly(1.0.0), 0Harmony(2.2.2), 0PrepatcherAPI(1.1.1), PrepatcherImpl(1.0.0), Prestarter(1.0.0) | |
Harmony(brrainz.harmony)[mv:1.5.0.0]: 0Harmony(2.2.2), HarmonyMod(1.5.0) | |
Fishery - Modding Library(bs.fishery): 1Fishery(0.3.800.85), System.Runtime.CompilerServices.Unsafe(av:6.0.0,fv:6.0.21.52210) | |
Core(Ludeon.RimWorld): (no assemblies) | |
Performance Fish(bs.performance): 0PrepatcherAPI(1.1.1), 1Fishery(0.3.800.85), PerformanceFish(0.3.800.85), System.Runtime.CompilerServices.Unsafe(av:6.0.0,fv:6.0.21.52210) | |
Startup impact 1.4(automatic.startupimpact): 0Harmony(2.2.2), Assembly-CSharp-firstpass(0.0.0), StartupImpact(1.1.8369.39377), UnityEngine.SubsystemsModule(0.0.0) | |
Royalty(Ludeon.RimWorld.Royalty): (no assemblies) | |
Ideology(Ludeon.RimWorld.Ideology): (no assemblies) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections.Generic; | |
using UnityEngine.TestTools; | |
using NUnit.Framework; | |
using System.Linq; | |
namespace Roll7 | |
{ | |
/// <summary> | |
/// This tracker will assert for both warnings and errors. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using TenPN.DecisionFlex; | |
using System; | |
public class CustomSingleContextFactory : SingleContextFactory | |
{ | |
public override IContext SingleContext(Logging loggingSetting) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tree: | |
model: special_treasure | |
harvestable: | |
for: players | |
reward: coins | |
canBeDepletedPerPlayer: | |
health: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npc_fisherman_recipe: | |
model: npc_fisherman | |
needsToBeCrafted: | |
recipe: | |
- [biome2_plant_ingredient, 2] | |
replacedBy: npc_fisherman | |
isAnNPC: | |
clickSpeech: NPCCrafting_npc_fisherman |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
The MIT License (MIT) | |
Copyright (c) 2014 Andrew Fray, Marcelo Oliveira | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
///////////////////////////////////////////////////////////////////////////// | |
// C# Version Copyright (c) 2003 CenterSpace Software, LLC // | |
// & Spry Fox LLC (c) 2013 // | |
// // | |
// This code is free software under the Artistic license. // | |
// // | |
// CenterSpace Software // | |
// 2098 NW Myrtlewood Way // | |
// Corvallis, Oregon, 97330 // | |
// USA // |
NewerOlder