initial project setup and updated git ignore

This commit is contained in:
ori agranat
2019-09-10 23:47:06 +03:00
parent b2486cc4a7
commit e72bb51308
10 changed files with 142 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
package Classes;
import Classes.MetaClass.Singleton;
public class SettingsManager extends Singleton {
public static int x = 5; // example of how to setup variable in singleton
}