添加竞赛proto定义0.1版

This commit is contained in:
thesai 2024-02-02 16:07:57 +08:00
parent 34d0e6d71b
commit 073add20d7

17
src/scene.proto Normal file
View File

@ -0,0 +1,17 @@
syntax = "proto3";
package task;
message Scene {
string url = 1;
StorageSimulation storageSimulation = 2;
enum Type {
Unknown = 0;
Local = 1;
Link = 2;
}
}
message StorageSimulation {
}