代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/396475/8105646
pas hge.pas
unit HGE;
(*
** Haaf's Game Engine 1.7
** Copyright (C) 2003-2007, Relish Games
** hge.relishgames.com
**
** Delphi conversion by Erik van Bilsen
*)
interface
uses
Classes, Windows, Di
www.eeworm.com/read/396475/8105669
pas hgespriteengine.pas
unit HGESpriteEngine;
(*
** HGE Sprite Engine helper class
** Extension to the HGE engine
** Extension added by DraculaLin
** This extension is NOT part of the original HGE engine.
*)
interf
www.eeworm.com/read/396475/8105729
pas hgegui.pas
unit HGEGUI;
(*
** Haaf's Game Engine 1.7
** Copyright (C) 2003-2007, Relish Games
** hge.relishgames.com
**
** Delphi conversion by Erik van Bilsen
**
** NOTE: The Delphi version uses public
www.eeworm.com/read/396475/8105788
pas hgerect.pas
unit HGERect;
(*
** Haaf's Game Engine 1.7
** Copyright (C) 2003-2007, Relish Games
** hge.relishgames.com
**
** hgeRect helper class
**
** Delphi conversion by Erik van Bilsen
*)
interfac
www.eeworm.com/read/296323/8109669
java sampleworlds.java
import java.util.Vector;
class sampleWorlds {
public Vector samples;
public sampleWorlds() {
samples = new Vector();
String title;
// sample wall sets:
title = "Wall
www.eeworm.com/read/296323/8109757
java catandmouseworld.java
import java.awt.*;
public class CatAndMouseWorld implements RLWorld{
public int bx, by;
public int mx, my;
public int cx, cy;
public int chx, chy;
public int hx, hy;
public boolean go
www.eeworm.com/read/296261/8113799
java shape.java
import java.awt.Color;
import java.awt.Graphics;
@SuppressWarnings("unchecked")
public abstract class Shape implements Comparable{
private boolean visible = true;
private static Color bac
www.eeworm.com/read/195743/8132875
bas mdldefine.bas
Attribute VB_Name = "mdlDefine"
Option Explicit
Type SysStruct
CommPort As Integer
Baud As String
ServiceNo As String
DestNo As String
CallMelody As Integer
SMSMelody
www.eeworm.com/read/295928/8134454
h c1.h
// c1.h (程序名)
#include
#include
#include // malloc()等
#include // INT_MAX等
#include // EOF(=^Z或F6),NULL
#include // atoi()
#inc
www.eeworm.com/read/195672/8136174
java renterifc.java
public interface RenterIFC{
/** 是否同意按租赁人提出的价格出租房屋 */
public boolean isAgree(double expectedRent);
/** 收房租 */
public void fetchRent(double rent);
}
/******************************