mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-16 10:51:55 -04:00
Seems like implementing a SideOnly interface makes the whole class SideOnly, instead of just stripping the interface... oh well. Closes #1098.
This commit is contained in:
parent
1528a6ee24
commit
fef2784141
@ -6,6 +6,7 @@ A few useful links:
|
|||||||
* [Downloads][releases]
|
* [Downloads][releases]
|
||||||
* [Bug Tracker][issues]
|
* [Bug Tracker][issues]
|
||||||
* [Wiki][wiki]
|
* [Wiki][wiki]
|
||||||
|
* [Ingame Manual][ingame manual]
|
||||||
* [IRC][irc]
|
* [IRC][irc]
|
||||||
* [Community Forums][forums]
|
* [Community Forums][forums]
|
||||||
|
|
||||||
@ -58,7 +59,7 @@ repositories {
|
|||||||
maven { url = "http://maven.cil.li/" }
|
maven { url = "http://maven.cil.li/" }
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
compile "li.cil.oc:OpenComputers:MC1.7.10-1.4.+:api"
|
compile "li.cil.oc:OpenComputers:MC1.7.10-1.5.+:api"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
Adjust the version number accordingly to the version you'd like to build against.
|
Adjust the version number accordingly to the version you'd like to build against.
|
||||||
@ -104,3 +105,4 @@ In the case you wish to use Eclipse rather than IDEA, the process is mostly the
|
|||||||
[robot names]: https://github.com/MightyPirates/OpenComputers/blob/master-MC1.7.10/src/main/resources/assets/opencomputers/robot.names
|
[robot names]: https://github.com/MightyPirates/OpenComputers/blob/master-MC1.7.10/src/main/resources/assets/opencomputers/robot.names
|
||||||
[wiki]: http://ocdoc.cil.li/
|
[wiki]: http://ocdoc.cil.li/
|
||||||
[integration]: https://github.com/MightyPirates/OpenComputers/tree/master-MC1.7.10/src/main/scala/li/cil/oc/integration
|
[integration]: https://github.com/MightyPirates/OpenComputers/tree/master-MC1.7.10/src/main/scala/li/cil/oc/integration
|
||||||
|
[ingame manual]: https://github.com/MightyPirates/OpenComputers/tree/master-MC1.7.10/src/main/resources/assets/opencomputers/doc
|
||||||
|
@ -17,8 +17,9 @@ import java.util.Set;
|
|||||||
* renderable upgrade. When the robot is rendered, each equipped upgrade is
|
* renderable upgrade. When the robot is rendered, each equipped upgrade is
|
||||||
* checked for this interface, and if present, the {@link #render} method
|
* checked for this interface, and if present, the {@link #render} method
|
||||||
* is called.
|
* is called.
|
||||||
|
* <p/>
|
||||||
|
* Note that these methods are only ever called on the client side.
|
||||||
*/
|
*/
|
||||||
@SideOnly(Side.CLIENT)
|
|
||||||
public interface UpgradeRenderer {
|
public interface UpgradeRenderer {
|
||||||
/**
|
/**
|
||||||
* Returns which mount point this renderer wants to render the specified
|
* Returns which mount point this renderer wants to render the specified
|
||||||
|
Loading…
x
Reference in New Issue
Block a user