Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/tharsis/entity/entitymanager.d
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ package:
// Set by EntityManager to signify that the thread should stop.
Stopping,
// The thread is stopped, or never ran in the first place.
Stopped,
Stopped
}

private:
Expand Down Expand Up @@ -618,7 +618,7 @@ package:
{
return manager.rawHandle(descriptor);
}
assert(false, "No resource manager for type " ~ to!string(type));
assert(false, "No resource manager for type " ~ std.conv.to!string(type));
}

private:
Expand Down
4 changes: 3 additions & 1 deletion source/tharsis/entity/processwrapper.d
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ module tharsis.entity.processwrapper;
import std.algorithm;

import tharsis.entity.entitymanager;
import tharsis.prof;


package:

Expand Down Expand Up @@ -146,7 +148,7 @@ public:
}


import std.algorithm: join;
import std.array: join;
import std.string: format;
import std.traits;

Expand Down
1 change: 1 addition & 0 deletions source/tharsis/entity/prototypemanager.d
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import tharsis.entity.resource;
import tharsis.entity.resourcemanager;
import tharsis.util.interfaces;
import tharsis.util.qualifierhacks;
import tharsis.util.pagedarray;


// TODO: Add a method to specify resources to preload at start instead of always loading
Expand Down
1 change: 1 addition & 0 deletions source/tharsis/std/random.d
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ public import std.random;


import std.range;
import std.algorithm.sorting;

/**
Covers a given range $(D r) in a random manner, i.e. goes through each
Expand Down