Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
shield.java
Package: BattleTank1.0.rar [view]
Upload User: jhzhutan
Upload Date: 2021-03-28
Package Size: 374k
Code Size: 1k
Category:
Shot Game
Development Platform:
Java
- //Download:http://www.codefans.net
- import java.awt.*;
- public class shield implements Actor{
- public int xPos;
- public int yPos;
- public ClientModel gameModel;
- public String Type = "shield";
- public shield(int xPos, int yPos, ClientModel gameModel){
- this.xPos = xPos;
- this.yPos = yPos;
- this.gameModel = gameModel;
- }
- public void draw(Graphics g){
- g.setColor(Color.red);
- g.drawRect(xPos - 12, yPos - 12, 25,25);
- g.drawRect(xPos - 11, yPos - 11, 23,23);
- gameModel.removeActor(this);
- }
- public int getxPos(){
- return xPos;
- }
- public int getyPos(){
- return yPos;
- }
- public String getType(){
- return Type;
- }
- }