Es sagtVisual Studio sagt „Methode Rückgabetyp haben muss“
„Methode Rückgabetyp haben muss“
wenn ich versuche, es zu debuggen.
Ich weiß nicht, wie diese Klasse zu beheben
Dies ist ein Spieler-Klasse für eine C# codiert 2d Spiel
public class player
{
public float moveSpeed;
public Vector2 position;
public Texture2D texture;
//default constructer
public Player(Texture2D tex, Vector2 startPos)
{
position = startPos;
texture = tex;
moveSpeed = 5.0f;
}
public void Update(GameTime gameTime)
{
//------------------------------------------
//check for keyboard input(keyboard IF statements)
}
public void Draw(SpriteBatch spriteBatch)
{
spriteBatch.Draw(texture, position, Color.White);
}
}
Nun, welche Zeile hat den Fehler? Denkst du nicht, dass es uns helfen würde, es uns zu sagen? – OldProgrammer