21 lines
208 B
Markdown
21 lines
208 B
Markdown
# Common Code Patterns
|
|
|
|
Pattern: Player Name Lookup
|
|
|
|
C++
|
|
|
|
Name2IDTable
|
|
ID2NameTable
|
|
|
|
C#
|
|
|
|
Dictionary<string, int>
|
|
Dictionary<int, string>
|
|
|
|
Pattern: Chat Rendering
|
|
|
|
Parse text
|
|
↓
|
|
create item list
|
|
↓
|
|
render UI |