upd (fw):

- fixed inconsistent rpc build
- changed project-wide naming convention to prefix with "FW_" instead of "RageFW_"
This commit is contained in:
2025-01-30 19:40:09 +00:00
parent 7a37aa390e
commit edafb5289e
29 changed files with 248 additions and 287 deletions
+3 -3
View File
@@ -1,13 +1,13 @@
declare module '@entityseven/rage-fw-shared-types' {
export interface RageFW_ICustomServerEvent {
export interface FW_ICustomServerEvent {
// customServerEvent(arg1: string, arg2: number): boolean // example event
}
export interface RageFW_ICustomClientEvent {
export interface FW_ICustomClientEvent {
// customClientEvent(arg1: string, arg2: number): boolean // example event
}
export interface RageFW_ICustomBrowserEvent {
export interface FW_ICustomBrowserEvent {
// customCefEvent(arg1: string, arg2: number): boolean // example event
}
}