using GTA; using RageCoop.Core.Scripting; namespace RageCoop.Client.Scripting { [ScriptAttributes(NoDefaultInstance = true)] public abstract class ClientScript : Script { /// /// Get the instance where this script is loaded from. /// public ClientFile CurrentFile { get; internal set; } /// /// Get the that this script belongs to. /// public ClientResource CurrentResource { get; internal set; } /// /// Eqivalent of in /// public Core.Logger Logger => CurrentResource.Logger; } }