Shop System [Clothes] base

This commit is contained in:
Lukas Moungos
2020-01-26 14:55:24 +01:00
committed by Lukas Moungos
parent 461b9aa4cb
commit 834c5cb22d
30 changed files with 102924 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
using ReallifeGamemode.Database.Entities;
namespace ReallifeGamemode.Server.Shop.Clothing
{
public class Clothe : ShopClothe
{
public string clothe;
public int undershirtId;
public int torsoId;
}
}