Skip to content

Commit

Permalink
chore: merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
nattb8 committed Sep 30, 2024
2 parents dbce606 + 12dd5c3 commit e974e3a
Show file tree
Hide file tree
Showing 176 changed files with 7,257 additions and 3,108 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FILTER_REGEX_EXCLUDE: (.*Assets/Plugins/Android/mainTemplate.gradle)
FILTER_REGEX_EXCLUDE: (.*Assets/Plugins/Android/mainTemplate.gradle|.*Assets/Shared/Scripts/Data)
VALIDATE_MARKDOWN: false
VALIDATE_GITLEAKS: false
VALIDATE_JSCPD: false
Expand Down
3 changes: 3 additions & 0 deletions Assets/Core/Xsolla.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Assets/Core/Xsolla/Browser.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 35 additions & 0 deletions Assets/Core/Xsolla/Browser/IInAppBrowser.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
using System;

namespace Xsolla.Core
{
public interface IInAppBrowser
{
event Action OpenEvent;

event Action<BrowserCloseInfo> CloseEvent;

event Action<string> UrlChangeEvent;

event Action<string, Action> AlertDialogEvent;

event Action<string, Action, Action> ConfirmDialogEvent;

bool IsOpened { get; }

bool IsFullScreen { get; }

void Open(string url);

void Close(float delay = 0f, bool isManually = false);

void AddInitHandler(Action callback);

void AddCloseHandler(Action callback);

void AddUrlChangeHandler(Action<string> callback);

void UpdateSize(int width, int height);

void SetFullscreenMode(bool isFullscreen);
}
}
3 changes: 3 additions & 0 deletions Assets/Core/Xsolla/Browser/IInAppBrowser.cs.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Assets/Core/Xsolla/Browser/Plugins.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Git LFS file not shown

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Git LFS file not shown

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Git LFS file not shown

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Git LFS file not shown

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Git LFS file not shown

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Git LFS file not shown

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Git LFS file not shown

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Git LFS file not shown

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Git LFS file not shown
Loading

0 comments on commit e974e3a

Please sign in to comment.