-
Notifications
You must be signed in to change notification settings - Fork 1
/
YurikoCS.cs
54 lines (52 loc) · 1.17 KB
/
YurikoCS.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
*
* _ __ _ _ ____ ____
*\ \ / / _ _ __(_) | _____ / ___/ ___|
* \ V / | | | '__| | |/ / _ \ _____| | \___ \
* | || |_| | | | | < (_) |_____| |___ ___) |
* |_| \__,_|_| |_|_|\_\___/ \____|____/
*
* Yuriko-CS, brand a new Minecraft: Pocket Edition
* server software in C#
* Copyright 2016 ItalianDevs4PM.
*
* See LICENSE.md for the license applied to this file/project
*
*
* @author ItalianDevs4PM
* @link http://github.com/ItalianDevs4PM
*
*
*/
/*
*
* _ __ _ _ ____ ____
*\ \ / / _ _ __(_) | _____ / ___/ ___|
* \ V / | | | '__| | |/ / _ \ _____| | \___ \
* | || |_| | | | | < (_) |_____| |___ ___) |
* |_| \__,_|_| |_|_|\_\___/ \____|____/
*
* Yuriko-CS, brand a new Minecraft: Pocket Edition
* server software in C#
* Copyright 2016 ItalianDevs4PM.
*
* See LICENSE.md for the license applied to this file/project
*
*
* @author ItalianDevs4PM
* @link http://github.com/ItalianDevs4PM
*
*
*/
using System;
using System.IO;
namespace YurikoCS
{
class YurikoCS
{
public static void Main (string[] args)
{
Server server = new Server();
}
}
}