Skip to content

A rimworld library that could make your mod run in a sub-thread

Notifications You must be signed in to change notification settings

IssacZhuang/Rimworld-Library-ThreadUtility

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rimworld-Library-ThreadUtility

A rimworld library that could make your mod run in a sub-thread

The usage:

Load this library before your own mod.

//Implement the interface named ITickThreaded
class ClassInSubThread : ThingComp, ITickThreaded
    {
        //This method will run in the sub-thread
        public void TickThreaded()
        {
            //Do something
        }
    }

About

A rimworld library that could make your mod run in a sub-thread

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published