mirror of
				https://github.com/davidgiven/fluxengine.git
				synced 2025-10-24 11:11:02 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			362 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			362 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| syntax = "proto2";
 | |
| 
 | |
| import "google/protobuf/descriptor.proto";
 | |
| 
 | |
| message RangeProto {
 | |
| 	optional int32 start = 1;
 | |
| 	optional int32 step = 2 [default = 1];
 | |
| 	optional int32 end = 3;
 | |
| 	repeated int32 also = 4;
 | |
| }
 | |
| 
 | |
| extend google.protobuf.FieldOptions {
 | |
|   optional string help = 50000;
 | |
| }
 | |
| 
 | |
| enum IndexMode {
 | |
| 	INDEXMODE_DRIVE = 0;
 | |
| 	INDEXMODE_300 = 1;
 | |
| 	INDEXMODE_360 = 2;
 | |
| }
 | |
| 
 | |
| 
 |