Major changes

This commit is contained in:
daffyyyy
2023-11-27 01:52:23 +01:00
parent a42e9a37fc
commit 7e5485b209
7 changed files with 1103 additions and 981 deletions

15
WeaponInfo.cs Normal file
View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WeaponPaints
{
public class WeaponInfo
{
public int Paint { get; set; }
public int Seed { get; set; }
public float Wear { get; set; }
}
}