You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
374 B
21 lines
374 B
package com.msb.model.abstracts;/**
|
|
* @Author bingor
|
|
* @Date 2022/10/11 9:23
|
|
* @Description: com.msb.model.abstracts
|
|
* @Version: 1.0
|
|
*/
|
|
|
|
import java.awt.*;
|
|
|
|
/**
|
|
*@ClassName GameObject
|
|
*@Description TODO
|
|
*@Author bingor
|
|
*@Date 2022/10/11 9:23
|
|
*@Version 3.0
|
|
*/
|
|
public abstract class GameObject {
|
|
protected int x,y;
|
|
public abstract void paint(Graphics g);
|
|
}
|