Created
July 5, 2017 04:04
-
-
Save vigsterkr/3268e9482b90250b6450f6187e647cd7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CSGObject { | |
public: | |
static void set_seed(uint32_t seed) { | |
CSGObject::m_seed = seed; | |
} | |
private: | |
static uint32_t m_seed; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment