This file contains hidden or 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; | |
using System.IO; | |
namespace PPT_TextFix { | |
class Program { | |
static void Main(string[] args) { | |
if (args.Length == 0) { | |
Console.WriteLine("No file specified / ファイルが指定されていません。"); | |
Console.WriteLine("Using default executable path / Steamのデフォルトのパスで実行します。"); | |
args = new[] { |
This file contains hidden or 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; | |
using System.IO; | |
using System.IO.Pipes; | |
using System.Threading; | |
using UnityEngine; | |
using Debug = UnityEngine.Debug; | |
namespace Hikari.PPT { | |
public class PPTSync : IDisposable { | |
private readonly NamedPipeClientStream pipe; |
This file contains hidden or 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
package warpdrive.luminousexpansion.items.prototype; | |
import cofh.redstoneflux.api.IEnergyContainerItem; | |
import net.minecraft.item.Item; | |
import net.minecraft.item.ItemStack; | |
import warpdrive.luminousexpansion.LuminousExpansion; | |
public class TestChargeItem extends Item implements IEnergyContainerItem { | |
public TestChargeItem() { |