我在写游戏;而不是把我的代码弄得一团糟,我真的很想做这样的事情。
这就是我的代码现在的样子。
bool Verified[18] = { false }; // 18 for (18 clients in game)
比设置那个布尔我显然会做
for(int Client;Client<18;Client++)
{
Verified[Client] = false;
}
我想要真正做的是下面这个。
static class Clients
{
//Verified size is 18, for (18 clients max in game)
bool Verified = the value sent by example below to client?
//some functions i'd like to add later
}
我希望能够做的是以下内容:
Clients[ClientIndex].Verified = false;
Clients[ClientIndex].SomeFunction_Call( < This param same as ClientIndex);
我不太了解我知道的c++;我失败了。但任何帮助都会很棒。