标签: c# xna
如何在点按手机屏幕时调用以下方法
public void draw(SpriteBatch spriteBatch) { spriteBatch.Draw(Texture.player[currentframe], Texture.position, Color.White); currentframe++; if (currentframe > 24) currentframe = 0; }