Edit Edit-Mode

This commit is contained in:
VegaZ
2018-11-03 23:12:57 +01:00
parent 0610c0bd57
commit d5c054595b
5 changed files with 31 additions and 11 deletions

13
Main.cs
View File

@@ -5,6 +5,7 @@ using Microsoft.EntityFrameworkCore;
using reallife_gamemode.Model;
using reallife_gamemode.Server.Entities;
using reallife_gamemode.Server.Managers;
using reallife_gamemode.Server.Saves;
/**
* @overview Life of German Reallife - Main Class (Main.cs)
@@ -54,15 +55,5 @@ namespace reallife_gamemode
NAPI.Data.SetWorldData("blipTemplate", tempBlip);
}
}
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; }
}
}
}