Skip to content

Commit

Permalink
Merge branch 'main' into protocol-squad
Browse files Browse the repository at this point in the history
  • Loading branch information
leanmendoza authored Aug 5, 2024
2 parents e0cda12 + 84935c4 commit 205bdd8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions proto/decentraland/sdk/components/map_pin.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
syntax = "proto3";
package decentraland.sdk.components;
import "decentraland/common/vectors.proto";
import "decentraland/sdk/components/common/id.proto";
import "decentraland/common/texture.proto";
option (common.ecs_component_id) = 1097;

// @deprecated
// Used internally for the game orchestrator PX, not exposed in the SDK
message PBMapPin {
decentraland.common.Vector2 position = 1;
optional decentraland.common.TextureUnion texture = 2;
float icon_size = 3;
string title = 4;
string description = 5;
}

0 comments on commit 205bdd8

Please sign in to comment.