摘要:
const int w = 100; const int h = 100; const int size = w * h * 4; unsigned char data[size] = { 0 }; for (int i = 0; i < size; i += 4) { data[i] = 255; 阅读全文
摘要:
#include <iostream>#include <string>using namespace std;#include "../../src/socket/TCPSocketEx.h"#include <cocos2d.h>using namespace cocos2d;#include 阅读全文