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; | |
using System.Collections.Generic; | |
using BlackCore.GameWorld; | |
namespace BlackCore.GameWorld | |
{ | |
public interface IRoom | |
{ | |
IRoom SelectMode(Dictionary<string, int> mode, int state); |
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
--- | |
- hosts: all | |
sudo: true | |
vars_files: | |
- vars.yml | |
tasks: | |
- uri: | |
url: "https://api.serverpilot.io/v1/servers" | |
user: "{{ spclientid }}" | |
password: "{{ spapikey }}" |
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
public static void insertWords(List<string> words) | |
{ | |
var context = new OperationDataContext(); | |
var existingWords = context.GetTable<english_dictionary>().Where(word => words.Contains(word)).ToList(); | |
var wordsToInsert = words.Except(existingWords).ToList(); | |
foreach (var word in wordsToInsert) | |
{ |
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
namespace ProjectCompany | |
{ | |
public class Employee | |
{ | |
private string firstName; | |
private string secondName; | |
private Company company; | |
private Employee supervisor; | |
public Employee (string firstName, string secondName, Company company, Employee supervisor) |