Skip to content

Commit 21c6774

Browse files
committed
fix compile error with static
1 parent 1a8cdbc commit 21c6774

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Runtime/NativeTime.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ internal class NativeTimeInternal
2020
[BurstCompatible]
2121
public struct ValueStopwatch
2222
{
23-
static const int TicksToNanoseconds = 100;
23+
public const int TicksToNanoseconds = 100;
2424
ulong start;
2525

2626
/// <summary> Returns the number of nanoseconds since system startup. </summary>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.strangeloopgames.nativetime",
33
"displayName": "NativeTime",
4-
"version": "0.1.2",
4+
"version": "0.1.3",
55
"unity": "2020.3",
66
"author": {
77
"name": "Strange Loop Games",

0 commit comments

Comments
 (0)