fix: Explicit Usings

This commit is contained in:
Syntriax 2023-11-24 16:58:07 +03:00
parent 8a8c09f043
commit 6f68e29fb8
2 changed files with 4 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<ImplicitUsings>false</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

View File

@ -1,3 +1,6 @@
using System;
using System.Collections.Generic;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;