├── .gitattributes ├── .gitignore ├── CompileTimeRandom.h ├── LICENSE ├── Project ├── CompileTimeRandom.sln ├── CompileTimeRandom.vcxproj └── CompileTimeRandom.vcxproj.filters ├── README.md └── main.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phisn/CompileTimeRandom/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phisn/CompileTimeRandom/HEAD/.gitignore -------------------------------------------------------------------------------- /CompileTimeRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phisn/CompileTimeRandom/HEAD/CompileTimeRandom.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phisn/CompileTimeRandom/HEAD/LICENSE -------------------------------------------------------------------------------- /Project/CompileTimeRandom.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phisn/CompileTimeRandom/HEAD/Project/CompileTimeRandom.sln -------------------------------------------------------------------------------- /Project/CompileTimeRandom.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phisn/CompileTimeRandom/HEAD/Project/CompileTimeRandom.vcxproj -------------------------------------------------------------------------------- /Project/CompileTimeRandom.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phisn/CompileTimeRandom/HEAD/Project/CompileTimeRandom.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phisn/CompileTimeRandom/HEAD/README.md -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phisn/CompileTimeRandom/HEAD/main.cpp --------------------------------------------------------------------------------