SomeErrorFixes

This commit is contained in:
AnloGames 2023-08-14 19:31:12 +03:00
parent e6beffb420
commit 67a450527c
2 changed files with 7 additions and 2 deletions

View file

@ -1,4 +1,6 @@
using System;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using System;
using System.Collections.Generic;
using System.Text;
@ -6,5 +8,8 @@ namespace DangerousD.GameCore.GameObjects
{
class MapObject : GameObject
{
public MapObject(Texture2D texture, Vector2 position) : base(texture, position)
{
}
}
}

View file

@ -5,7 +5,7 @@ using System.Collections.Generic;
using System.Diagnostics;
using System.Text;
using System.Xml.Serialization;
using System.Runtime.InteropServices.WindowsRuntime;
using System.Runtime.InteropServices;
namespace DangerousD.GameCore
{