MCPcopy Create free account
hub / github.com/OpenArkStudio/ARK / FindTable

Method FindTable

src/plugin/kernel/src/AFCEntity.cpp:637–645  ·  view source on GitHub ↗

table data

Source from the content-addressed store, hash-verified

635
636// table data
637AFITable* AFCEntity::FindTable(const std::string& name)
638{
639 ARK_ASSERT_RET_VAL(class_meta_ != nullptr, nullptr);
640
641 auto index = class_meta_->GetIndex(name);
642 ARK_ASSERT_RET_VAL(index > 0, nullptr);
643
644 return FindTable(index);
645}
646
647AFITable* AFCEntity::FindTable(const uint32_t index)
648{

Callers 5

TableTestMethod · 0.45
TableCallBackTestMethod · 0.45
CreateAnPlayerAndInitMethod · 0.45
OnSyncTableAddMethod · 0.45
DBDataToTableMethod · 0.45

Calls 2

CreateTableMethod · 0.80
GetIndexMethod · 0.45

Tested by

no test coverage detected