-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
97 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,24 @@ | ||
type UPROPERTYParam = null; | ||
type UFUNCTIONParam = null; | ||
type KEYBINDParam = 0 | 1; | ||
|
||
declare const EditAnywhere: UPROPERTYParam = null; | ||
declare const VisibleAnywhere: UPROPERTYParam = null; | ||
declare const EditAnywhere: UPROPERTYParam; | ||
declare const VisibleAnywhere: UPROPERTYParam; | ||
|
||
declare const BindAxis: KEYBINDParam = 0; | ||
declare const BindAction: KEYBINDParam = 1; | ||
declare const IE_PRESSED: KEYBINDParam = 0; | ||
declare const IE_RELEASED: KEYBINDParam = 1; | ||
|
||
declare const Server: UFUNCTIONParam; | ||
declare const Client: UFUNCTIONParam; | ||
declare const Reliable: UFUNCTIONParam; | ||
declare const Unreliable: UFUNCTIONParam; | ||
declare const NetMulticast: UFUNCTIONParam; | ||
|
||
declare const UCLASS = (): Function => (): void => {}; | ||
declare const UPROPERTY = (...args: UPROPERTYParam[]): Function => (): void => {}; | ||
declare const UFUNCTION = (...args: UPROPERTYParam[]): Function => (): void => {}; | ||
declare const UFUNCTION = (...args: UFUNCTIONParam[]): Function => (): void => {}; | ||
declare const KEYBIND = (type: KEYBINDParam, action: string, event: ?KEYBINDParam = 0): Function => (): void => {}; | ||
|
||
declare type float = number; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters