Skip to content

Commit

Permalink
0.3.7.823
Browse files Browse the repository at this point in the history
  • Loading branch information
gleblebedev committed Jul 14, 2024
1 parent ffcd082 commit 5d6500b
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
]
},
"unofficial.Urho3DNet.Editor": {
"version": "0.3.7.813",
"version": "0.3.7.823",
"commands": [
"rbfx"
]
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Urho3DNetVersion>0.3.7.813</Urho3DNetVersion>
<Urho3DNetVersion>0.3.7.823</Urho3DNetVersion>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion RbfxTemplate/AcceptPrivacyPolicyState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace RbfxTemplate
{
[ObjectFactory]
[Preserve(AllMembers = true)]
public class AcceptPrivacyPolicyState : RmlUIStateBase
public partial class AcceptPrivacyPolicyState : RmlUIStateBase
{
protected readonly SharedPtr<Scene> _scene;
private readonly Viewport _viewport;
Expand Down
2 changes: 1 addition & 1 deletion RbfxTemplate/GameRmlUIComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace RbfxTemplate
{
[ObjectFactory(Category = "Component/Game")]
[Preserve(AllMembers = true)]
public class GameRmlUIComponent : RmlUIComponent
public partial class GameRmlUIComponent : RmlUIComponent
{
private RmlUIStateBase _state;

Expand Down
2 changes: 1 addition & 1 deletion RbfxTemplate/GameState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace RbfxTemplate
{
[ObjectFactory]
[Preserve(AllMembers = true)]
public sealed class GameState : RmlUIStateBase
public sealed partial class GameState : RmlUIStateBase
{
private readonly SharedPtr<Scene> _scene;
private readonly UrhoPluginApplication _app;
Expand Down
2 changes: 1 addition & 1 deletion RbfxTemplate/MainMenuState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace RbfxTemplate
{
[ObjectFactory]
[Preserve(AllMembers = true)]
public class MainMenuState : RmlUIStateBase
public partial class MainMenuState : RmlUIStateBase
{
protected readonly SharedPtr<Scene> _scene;
private readonly Viewport _viewport;
Expand Down
2 changes: 1 addition & 1 deletion RbfxTemplate/RmlUIStateBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace RbfxTemplate
/// <summary>
/// Base class for a game state with RmlUI document.
/// </summary>
public abstract class RmlUIStateBase : ApplicationState, INotifyPropertyChanged
public abstract partial class RmlUIStateBase : ApplicationState, INotifyPropertyChanged
{
private readonly SharedPtr<Scene> _scene;
private readonly GameRmlUIComponent _uiComponent;
Expand Down
2 changes: 1 addition & 1 deletion RbfxTemplate/SettingsMenuState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace RbfxTemplate
{
public class SettingsMenuState : RmlUIStateBase
public partial class SettingsMenuState : RmlUIStateBase
{
public SettingsMenuState(UrhoPluginApplication app) : base(app, "UI/Options.rml")
{
Expand Down
2 changes: 1 addition & 1 deletion RbfxTemplate/Tile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace RbfxTemplate
{
[ObjectFactory(Category = "Component/Game")]
[Preserve(AllMembers = true)]
public sealed class Tile : Component
public sealed partial class Tile : Component
{
[SerializeField(Mode = AttributeMode.AmDefault | AttributeMode.AmNodeid, Name = "Link")]
private int _linkId;
Expand Down
2 changes: 1 addition & 1 deletion RbfxTemplate/UrhoApplication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace RbfxTemplate
/// This class represents an Urho3D application.
/// </summary>
[Preserve(AllMembers = true)]
public class UrhoApplication : Application
public partial class UrhoApplication : Application
{
/// <summary>
/// Safe pointer to settings screen.
Expand Down
2 changes: 1 addition & 1 deletion RbfxTemplate/UrhoPluginApplication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace RbfxTemplate
/// </summary>
[LoadablePlugin]
[Preserve(AllMembers = true)]
public class UrhoPluginApplication : PluginApplication
public partial class UrhoPluginApplication : PluginApplication
{
/// <summary>
/// Safe pointer to game screen.
Expand Down
2 changes: 1 addition & 1 deletion RbfxTemplate/Utils/ConfigFileContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace RbfxTemplate.Utils
/// This will never work as a resource because generic types can't be registered in engine reflection.
/// Use this only via LoadConfig/SaveConfig API.
/// </summary>
public sealed class ConfigFileContainer<TValue> : JsonResource<TValue> where TValue : new()
public sealed partial class ConfigFileContainer<TValue> : JsonResource<TValue> where TValue : new()
{
public ConfigFileContainer(Context context) : base(context)
{
Expand Down
4 changes: 2 additions & 2 deletions RbfxTemplate/Utils/JSONResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace RbfxTemplate.Utils
{
public class JsonResource: Resource
public partial class JsonResource: Resource
{
/// <summary>
/// Create json resource.
Expand Down Expand Up @@ -253,7 +253,7 @@ public override void Write(
/// Base class for resource files. The file contains value serialized to json via .net serialization.
/// </summary>
/// <typeparam name="TValue">Resource value type.</typeparam>
public abstract class JsonResource<TValue> : JsonResource where TValue : new()
public abstract partial class JsonResource<TValue> : JsonResource where TValue : new()
{
/// <summary>
/// Stored resource value.
Expand Down

0 comments on commit 5d6500b

Please sign in to comment.