Click or drag to resize

IUserDataStore Interface

Interface for UserDataStore. Used for saving and loading controller configuration data.

Namespace:  Rewired.Interfaces
Assembly:  Rewired_Core (in Rewired_Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public interface IUserDataStore

The IUserDataStore type exposes the following members.

Methods
  NameDescription
Public methodLoad
Load all data now.
Public methodLoadControllerData(ControllerType, Int32)
Load all data for a specific controller. Does not load Player data.
Public methodLoadControllerData(Int32, ControllerType, Int32)
Load all data for a specific controller for a Player.
Public methodLoadInputBehavior
Load all data for a specific InputBehavior for a Player.
Public methodLoadPlayerData
Load all data for a specific Player.
Public methodSave
Save all data now.
Public methodSaveControllerData(ControllerType, Int32)
Save all data for a specific controller. Does not save Player data.
Public methodSaveControllerData(Int32, ControllerType, Int32)
Save all data for a specific controller for a Player.
Public methodSaveInputBehavior
Save all data for a specific InputBehavior for a Player.
Public methodSavePlayerData
Save all data for a specific Player.
Top
See Also