19 lines
323 B
C#
19 lines
323 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ReallifeGamemode.Database.Entities
|
|
{
|
|
public class VehicleInventory
|
|
{
|
|
public int ID;
|
|
public int currentWeight;
|
|
public int totalWeight;
|
|
public string[] ivehName;
|
|
public int[] ivehAmount;
|
|
public int[] ivehId;
|
|
|
|
|
|
}
|
|
}
|