Skip to content

IgrisLib 1.5.0.0

Latest
Compare
Choose a tag to compare
@IgrisModz IgrisModz released this 06 Aug 23:21
· 43 commits to master since this release

Add 2 others constructor (api by name or enum)
Add 2 others change api (api by name or enum)
Add list of apis (name)
TargetName is now saved when you connect
Add icon to controls in add console window and console connection window
Fix getconnected for PS3MAPI
Add PS3MAPI to GetConsoleName

Exemple:
public PS3API PS3 { get; }
public List ApiList { get; set; }
public string SelectedApi {get; set; }

Exemple with class:
for all its CCAPI, TMAPI, PS3MAPI
PS3 = new PS3(new CCAPI());
PS3.ChangeAPI(new CCAPI());
Exemple with name:
PS3 = new PS3("CCAPI");
PS3.ChangeAPI("CCAPI");
Exemple with enum:
PS3 = new PS3(SelectAPI.CCAPI);
PS3.ChangeApi(SelectAPI.CCAPI);