Skip to content

Commit 3eaca93

Browse files
committed
autogen chsharp
1 parent dbefb0d commit 3eaca93

17 files changed

Lines changed: 91 additions & 91 deletions

File tree

demo/Blackholio/client-unity/Assets/Scripts/autogen/SpacetimeDBClient.g.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/Blackholio/client-unity/Assets/Scripts/autogen/Tables/Circle.g.cs

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/Blackholio/client-unity/Assets/Scripts/autogen/Tables/Config.g.cs

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/Blackholio/client-unity/Assets/Scripts/autogen/Tables/Entity.g.cs

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/Blackholio/client-unity/Assets/Scripts/autogen/Tables/Food.g.cs

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/Blackholio/client-unity/Assets/Scripts/autogen/Tables/Player.g.cs

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/Blackholio/client-unreal/Source/client_unreal/Private/ModuleBindings/Tables/CircleTable.g.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@ void UCircleTable::PostInitialize()
1616
CircleTable->AddUniqueConstraint<int32>("entity_id", [](const FCircleType& Row) -> const int32& {
1717
return Row.EntityId; });
1818

19-
EntityId = NewObject<UCircleEntityIdUniqueIndex>(this);
20-
EntityId->SetCache(CircleTable);
19+
CircleEntityIdIdxBtree = NewObject<UCircleCircleEntityIdIdxBtreeUniqueIndex>(this);
20+
CircleEntityIdIdxBtree->SetCache(CircleTable);
2121

22-
// Register a new multi-key B-Tree index named "player_id" on the CircleTable.
22+
// Register a new multi-key B-Tree index named "circle_player_id_idx_btree" on the CircleTable.
2323
CircleTable->AddMultiKeyBTreeIndex<TTuple<int32>>(
24-
TEXT("player_id"),
24+
TEXT("circle_player_id_idx_btree"),
2525
[](const FCircleType& Row)
2626
{
2727
// This tuple is stored in the B-Tree index for fast composite key lookups.
2828
return MakeTuple(Row.PlayerId);
2929
}
3030
);
3131

32-
PlayerId = NewObject<UCirclePlayerIdIndex>(this);
33-
PlayerId->SetCache(CircleTable);
32+
CirclePlayerIdIdxBtree = NewObject<UCircleCirclePlayerIdIdxBtreeIndex>(this);
33+
CirclePlayerIdIdxBtree->SetCache(CircleTable);
3434

3535
/***/
3636
}

demo/Blackholio/client-unreal/Source/client_unreal/Private/ModuleBindings/Tables/ConfigTable.g.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ void UConfigTable::PostInitialize()
1616
ConfigTable->AddUniqueConstraint<int32>("id", [](const FConfigType& Row) -> const int32& {
1717
return Row.Id; });
1818

19-
Id = NewObject<UConfigIdUniqueIndex>(this);
20-
Id->SetCache(ConfigTable);
19+
ConfigIdIdxBtree = NewObject<UConfigConfigIdIdxBtreeUniqueIndex>(this);
20+
ConfigIdIdxBtree->SetCache(ConfigTable);
2121

2222
/***/
2323
}

demo/Blackholio/client-unreal/Source/client_unreal/Private/ModuleBindings/Tables/EntityTable.g.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ void UEntityTable::PostInitialize()
1616
EntityTable->AddUniqueConstraint<int32>("entity_id", [](const FEntityType& Row) -> const int32& {
1717
return Row.EntityId; });
1818

19-
EntityId = NewObject<UEntityEntityIdUniqueIndex>(this);
20-
EntityId->SetCache(EntityTable);
19+
EntityEntityIdIdxBtree = NewObject<UEntityEntityEntityIdIdxBtreeUniqueIndex>(this);
20+
EntityEntityIdIdxBtree->SetCache(EntityTable);
2121

2222
/***/
2323
}

demo/Blackholio/client-unreal/Source/client_unreal/Private/ModuleBindings/Tables/FoodTable.g.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ void UFoodTable::PostInitialize()
1616
FoodTable->AddUniqueConstraint<int32>("entity_id", [](const FFoodType& Row) -> const int32& {
1717
return Row.EntityId; });
1818

19-
EntityId = NewObject<UFoodEntityIdUniqueIndex>(this);
20-
EntityId->SetCache(FoodTable);
19+
FoodEntityIdIdxBtree = NewObject<UFoodFoodEntityIdIdxBtreeUniqueIndex>(this);
20+
FoodEntityIdIdxBtree->SetCache(FoodTable);
2121

2222
/***/
2323
}

0 commit comments

Comments
 (0)