mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-20 12:36:05 +08:00
20 lines
328 B
Protocol Buffer
20 lines
328 B
Protocol Buffer
![]() |
syntax = "proto3";
|
||
|
|
||
|
message Function {
|
||
|
string name = 1;
|
||
|
repeated Function.Parameter parameters = 2;
|
||
|
string return_type = 3;
|
||
|
|
||
|
message Parameter {
|
||
|
string name = 1;
|
||
|
Function.Parameter.Value value = 2;
|
||
|
|
||
|
message Value {
|
||
|
oneof type {
|
||
|
string string = 1;
|
||
|
int64 integer = 2;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|