-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge Fix GetGamePool for server (pr-2738)
43af4e6 - fix(clr/shared): fix GetGamePool for server
- Loading branch information
Showing
3 changed files
with
10 additions
and
14 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,16 @@ | ||
#if MONO_V2 | ||
namespace CitizenFX.Server | ||
{ | ||
public sealed class Object : Entity, Shared.IObject | ||
{ | ||
public Object(int handle) : base(handle) | ||
{ | ||
} | ||
} | ||
#else | ||
namespace CitizenFX.Core | ||
#endif | ||
{ | ||
public sealed class Prop : Entity | ||
{ | ||
#if MONO_V2 | ||
, Shared.IObject | ||
#endif | ||
{ | ||
public Prop(int handle) : base(handle) | ||
{ | ||
} | ||
} | ||
#endif | ||
} |