Initial commit.

This commit is contained in:
Karolis2011
2019-08-17 21:55:05 +03:00
parent eaedeb14ae
commit 8ca5a24065
6 changed files with 439 additions and 2 deletions

20
byond.proto Normal file
View File

@@ -0,0 +1,20 @@
syntax = "proto3";
import "generic.proto";
option csharp_namespace = "ASS.API";
package Byond;
service Byond {
}
// The response message containing the greetings.
message ByondVersion {
int32 major = 1;
int32 minor = 2;
}