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
class Blaat { | |
private TaskCompletionSource<Pion> _pionCompletion = new TaskCompletionSource<Pion>(); | |
private void PionKlik(Pion item) | |
{ | |
_pionCompletion.TrySetResult(item); | |
} | |
//spel.cs | |
public async Task<Pion> KiesPion(Func<Pion, bool> mogelijk) | |
{ |
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
server { | |
listen 80; | |
server_name <url>; | |
root /var/www/html; | |
location / { |