Files
reallife-gamemode/Server/Classes/TempBlip.cs
2018-12-23 20:42:17 +01:00

17 lines
411 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace reallife_gamemode.Server.Classes
{
public class TempBlip
{
public byte Color { get; set; }
public string Name { get; set; }
public byte Transparency { get; set; }
public bool ShortRange { get; set; }
public uint Sprite { get; set; }
public float Scale { get; set; }
}
}