代码搜索:Player 有哪些应用?
找到约 10,000 项符合「Player 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/127871/5993836
h player.h
// Player.h: interface for the CPlayer class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_PLAYER_H__3429E9E2_4222_44A6_BE53_457D86002624__INCLUDED_)
www.eeworm.com/read/127871/5993856
cpp player.cpp
// Player.cpp: implementation of the CPlayer class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Player.h"
#define CONST_GRAVITY 90.
www.eeworm.com/read/127871/5993864
h player.h
// Player.h: interface for the CPlayer class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_PLAYER_H__EFAFE830_0D98_45D6_BD44_E6AD51C5A04F__INCLUDED_)
www.eeworm.com/read/127871/5993897
cpp player.cpp
// Player.cpp: implementation of the CPlayer class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Player.h"
/////////////////////////
www.eeworm.com/read/126547/6016038
cpp player.cpp
#include "player.h"
/*
Initialises the player for a new game.
*/
void initPlayer()
{
player.active = 1;
player.x = 200;
player.y = 200;
player.speed = 2;
player.maxShield = (25 * curr
www.eeworm.com/read/126547/6016049
h player.h
#include
#include
#include "SDL/SDL.h"
#include "SDL/SDL_image.h"
#include "SDL/SDL_mixer.h"
#include "defs.h"
#include "structs.h"
#include "classes.h"
extern void
www.eeworm.com/read/125439/6029102
java player.java
package com.javapatterns.chainofresp.flowerpassingthread;
abstract class Player
{
abstract public void handle();
/**
* @link aggregation
*/
private Player successor;
www.eeworm.com/read/125439/6029109
java player.java
package com.javapatterns.chainofresp.flowerpassing;
abstract class Player
{
abstract public void handle(int i);
/**
* @link aggregation
*/
private Player successor;
p
www.eeworm.com/read/125114/6033840
java player.java
package com.javapatterns.chainofresp.flowerpassingthread;
abstract class Player
{
public abstract void handle();
private Player successor;
public Player()
{
succes
www.eeworm.com/read/125114/6033847
java player.java
package com.javapatterns.chainofresp.flowerpassing;
public abstract class Player
{
public abstract void handle(int i);
private Player successor;
public Player()
{