diff options
| author | Matthew Collins <[email protected]> | 2018-02-28 16:12:31 +0000 |
|---|---|---|
| committer | Matthew Collins <[email protected]> | 2018-02-28 16:12:31 +0000 |
| commit | 844887aea84cb17a135d070304726a33f17b30b7 (patch) | |
| tree | dd26d34956283c9ef261fbae9c7e56c9992ea2ce /src/user.rs | |
| parent | Implement user authentication session methods (diff) | |
| download | steamworks-rs-844887aea84cb17a135d070304726a33f17b30b7.tar.xz steamworks-rs-844887aea84cb17a135d070304726a33f17b30b7.zip | |
Initial support for servers
Diffstat (limited to 'src/user.rs')
| -rw-r--r-- | src/user.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user.rs b/src/user.rs index 85a9795..3babc18 100644 --- a/src/user.rs +++ b/src/user.rs @@ -138,7 +138,7 @@ fn test() { /// A handle for an authentication ticket that can be used to cancel /// it. #[derive(Debug)] -pub struct AuthTicket(sys::HAuthTicket); +pub struct AuthTicket(pub(crate) sys::HAuthTicket); /// Called when generating a authentication session ticket. /// |