29 lines
521 B
C#
29 lines
521 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using GrandTheftMultiplayer.Server.API;
|
|
|
|
namespace Roleplay.Fraktionen.Aktionen
|
|
{
|
|
class Aktionsmanager : Script
|
|
{
|
|
public Aktionsmanager()
|
|
{
|
|
|
|
}
|
|
|
|
public static bool aktion = false;
|
|
|
|
public static bool isAktion()
|
|
{
|
|
return aktion;
|
|
}
|
|
|
|
public static bool triggerAktion()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|