コード例 #1
0
ファイル: BoardManager.cs プロジェクト: pipe01/TUNGPolyglot
        public BoardManager()
        {
            pendingID = new Dictionary <int, GameObject>();
            boards    = new Dictionary <int, NetBoard>();

            placer = new Placer();
        }
コード例 #2
0
ファイル: Polyglot.cs プロジェクト: pipe01/TUNGPolyglot
 public void Init()
 {
     client = new Client();
     placer = new Placer();
     IGConsole.RegisterCommand(new Command_find());
     IGConsole.RegisterCommand(new Command_findobj());
     IGConsole.Log($"Polyglot v{ModVersion.ToString()} initialized");
 }
コード例 #3
0
 public Command_tryplace(Placer placer)
 {
     this.placer = placer;
 }