Last active
January 29, 2019 17:34
-
-
Save apptects/a259873aee2bb25b05bc5b6da0973f1f to your computer and use it in GitHub Desktop.
C# signpost stub methods
This file contains hidden or 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
| using System.Runtime.InteropServices; | |
| public static class Signposts | |
| { | |
| [DllImport ("__Internal")] | |
| private static extern void initialize_log_handles(); | |
| [DllImport("__Internal")] | |
| public static extern ulong start_interval_load_asset(string _assetPath); | |
| [DllImport("__Internal")] | |
| public static extern void stop_interval_load_asset(ulong _signpostId); | |
| [DllImport("__Internal")] | |
| public static extern void stop_interval_load_asset_failed(ulong _signpostId); | |
| [DllImport("__Internal")] | |
| public static extern void event_input_tap(int _x, int _y); | |
| static Signposts() | |
| { | |
| initialize_log_handles(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment