|
标签:it |
|
标签:it |
与玩游戏相比,写游戏要复杂上千万倍,除了需要掌握通用的编程技巧以外,还要有相当的图形学,物理,数学基础,特别是在国内,由于相关资料的缺乏,更是让初学者无从下手。下面总结了一些入门方法和比较容易入手的资料。
|
标签:it |
#include 'Core_Global.h'
///////////////////////////////////
cApplication::cApplication()
{
|
标签:it |
#ifndef _SYSTEM_H
#define _SYSTEM_H
class cApplication
{
public:
|
标签:it |
#ifndef _COREGLOBAL_H
#define _COREGLOBAL_H
#include <windows.h>
#include <stdio.h>
#include 'd3d9.h'
#include 'd3dx9.h'
#include 'Core_System.h'
#endif
|
标签:it |
New Riders - 2003 - Developing Online GamesAn Insiders
Guide.chm
http://219.139.240.53/itebook/New
Riders - 2003 - Developing Online Games An Insiders Guide.chm
Core Techniques and Algorithms in Game Programming.chm
http://219.139.240.53/itebook/Core
Techniques and Algorithms in Game Programming.chm
MIT - Rules of Play Game Design Fundamentals.chm
http://219.139.240.53/itebook/MIT
- Rules of Play Game Design Fundamentals.chm
New.Riders.AI.Game.Development.Synthetic.Creatures.With.Learning.And.Reactive.Behaviors.chm
http://219.139.240.53/itebook/New.Riders.AI.Game.Development.Synthetic.Creatures.With.Learning.And.Reactive.Behaviors.chm
Wordware - 200
|
标签:it |
#include <windows.h>
#include <stdio.h>
#include <d3d9.h>
#include <d3dx9.h>
////////////////////////////////////////////
//Declare
LRESULT CALLBACK WindowProc(
);
BOOL DoInit();
BOOL DoShutdown();
BOOL DoPreFrame();
BOOL DoFrame();
BOOL DoPostFrame();
///////////////////////////////////////////
const char g_szClass[] ='yuanlinhu';
const char g_szCaption[] = 'Created By YLH';
HINSTANCE g_hInst;
HWND
|
标签:it |
|
标签:杂谈 |
#include <windows.h>
#include <iostream.h>
LRESULT CALLBACK WinSunProc(
);
int WINAPI WinMain(
)
{
&nbs
|
标签:杂谈 |