Kyuhyeon Woo

Results 1 comments of Kyuhyeon Woo

``` enum struct PlayerTable2 { int a[4]; void Test(PlayerTable2[1] test) { PrintToServer("%i", test[0].a[3]); } } public void OnPluginStart() { PlayerTable2 x[1]; x[0].a[3] = 123; x[0].Test(x); } ``` One of SM...