Hello!
I need to automatically generate an int with a specific name taken from PlayerPrefs. Here's the idea:
//create the int
void CreateInt()
{
new int PlayerPrefs.GetString("WhatToNameTheInt");
}
Obviously that code won't work. I've solved much harder C# issues, but this seemingly simply concept is bugging me...
Thanks for your ideas!
↧