Eriugena - Predmety.cs
Třída pro údaje o předmětech ve hře Eriugena.
C# .NET
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Media;
using Microsoft.Xna.Framework.Audio;
using System;
namespace Eriugena
{
public class Predmety
{
public string Nazev { get; private set; }
public bool JeVeSvete { get; set; }
public bool JeVInventari { get; set; }
public int Mistnost { get; private set; }
public int PoziceX { get; private set; }
public int PoziceY { get; private set; }
public int Sirka { get; private set; }
public int Vyska { get; private set; }
public Texture2D VzhledSvet { get; private set; }
public Texture2D VzhledInventar { get; private set; }
public Predmety(string nazev, bool jeVeSvete, bool jeVInventari,
int mistnost, int poziceX, int poziceY, int sirka, int vyska,
Texture2D vzhledSvet, Texture2D vzhledInventar)
{
Nazev = nazev;
JeVeSvete = jeVeSvete;
JeVInventari = jeVInventari;
Mistnost = mistnost;
PoziceX = poziceX;
PoziceY = poziceY;
Sirka = sirka;
Vyska = vyska;
VzhledSvet = vzhledSvet;
VzhledInventar = vzhledInventar;
}
}
}
Neformátovaný
Pridané: 16.2.2022
Exspirácia: Nebolo