Skip to content

Commit

Permalink
Deprecate current voxel suite
Browse files Browse the repository at this point in the history
  • Loading branch information
Desoroxxx committed Nov 17, 2023
1 parent 4dff6b6 commit 3be8eb0
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ Thanks to this separation, Red Core MC is now available for 1.7.10 through 1.12.
- Switched to [CurseUpdate](https://forge.curseupdate.com/) for update checking
- Moved `startClientTicker` from `RedCore` to `RedClientTicker
- Moved `forceOptiFineFastRenderOff` from `RedCore` to `OptiNotFine`
- Deprecated the vector suite as it is to be replaced by the new vector suite in 0.6

#### Removed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
*
* @author Desoroxxx
* @since 0.2
* @deprecated Will be replaced in 0.6 by the new vector suite {@link dev.redstudio.redcore.math.vectors}.
*/
@Deprecated
public final class Vector2D {

/** The x component of this vector. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
*
* @author Desoroxxx
* @since 0.2
* @deprecated Will be replaced in 0.6 by the new vector suite {@link dev.redstudio.redcore.math.vectors}.
*/
@Deprecated
public final class Vector2F {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
*
* @author Luna Lage (Desoroxxx)
* @since 0.4
* @deprecated Will be replaced in 0.6 by the new vector suite {@link dev.redstudio.redcore.math.vectors}.
*/
@Deprecated
public final class Vector2I {

/** The x component of this vector. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
*
* @author Desoroxxx
* @since 0.2
* @deprecated Will be replaced in 0.6 by the new vector suite {@link dev.redstudio.redcore.math.vectors}.
*/
@Deprecated
public final class Vector3D {

/** The X coordinate */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
*
* @author Desoroxxx
* @since 0.2
* @deprecated Will be replaced in 0.6 by the new vector suite {@link dev.redstudio.redcore.math.vectors}.
*/
@Deprecated
public final class Vector3F {

/** The X coordinate */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
*
* @author Desoroxxx
* @since 0.4
* @deprecated Will be replaced in 0.6 by the new vector suite {@link dev.redstudio.redcore.math.vectors}.
*/
@Deprecated
public final class Vector3I {

/** The X coordinate */
Expand Down

0 comments on commit 3be8eb0

Please sign in to comment.