Skip to content

Instantly share code, notes, and snippets.

@ShirakawaYoshimaru
Created June 10, 2016 16:51
Show Gist options
  • Save ShirakawaYoshimaru/6bfd10695c9a0dcc1b17aa434f2b9241 to your computer and use it in GitHub Desktop.
Save ShirakawaYoshimaru/6bfd10695c9a0dcc1b17aa434f2b9241 to your computer and use it in GitHub Desktop.
このクラスをSingletonにする。Awake時に外部からGetData()されても正常に動作するようにしよう
public class DataManager {
int dummyData;
void LoadData(){
dummyData = 10;
}
public int GetData(){
return dummyData;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment