⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 standalonedatatabletest.cpp

📁 hl2 source code. Do not use it illegal.
💻 CPP
字号:
// DATATABLETEST_ERASEME.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "quakedef.h"
#include <stdarg.h>
#include <stdio.h>
#include <time.h>
#include "vector.h"
#include "datatable_test.h"


float vec3_origin[3] = {0,0,0};

void Con_Printf(char *msg, ...)
{
	va_list marker;

	va_start(marker, msg);
	vprintf(msg, marker);
	va_end(marker);
}

void Con_DPrintf(char *msg, ...)
{
	va_list marker;

	va_start(marker, msg);
	vprintf(msg, marker);
	va_end(marker);
}

int main(int argc, char* argv[])
{
	// Seed the random number generator?
	unsigned srandNum = 0xFFFF;
	if(argc > 1)
	{
		if(stricmp(argv[1], "-seed") == 0)
		{
			srandNum = time(0);
			srand(srandNum);
		}
	}

	RunDataTableTest();
	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -