Skip to content

Commit

Permalink
🚚 Moved deprecated library class to project
Browse files Browse the repository at this point in the history
  • Loading branch information
doczi-dominik committed Feb 8, 2023
1 parent ca0a88b commit 8521a06
Show file tree
Hide file tree
Showing 9 changed files with 362 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Sources/game/backgrounds/NestBackground.hx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import utils.Utils;
import game.copying.CopyableRNG;
import kha.graphics2.Graphics;

using kha.graphics2.GraphicsExtension;
using utils.GraphicsExtension;

private class BackgroundParticle {
final rng: CopyableRNG;
Expand Down
2 changes: 1 addition & 1 deletion Sources/game/gelogroups/GeloGroup.hx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import game.gelos.Gelo;
import utils.Utils.lerp;
import utils.Utils.negativeMod;

using kha.graphics2.GraphicsExtension;
using utils.GraphicsExtension;

enum GeloGroupState {
CONTROLLING;
Expand Down
2 changes: 1 addition & 1 deletion Sources/game/gelogroups/TrainingGeloGroup.hx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import game.gelos.Gelo;
import kha.Color;
import save_data.TrainingSettings;

using kha.graphics2.GraphicsExtension;
using utils.GraphicsExtension;

@:structInit
@:build(game.Macros.buildOptionsClass(TrainingGeloGroup))
Expand Down
2 changes: 1 addition & 1 deletion Sources/game/particles/AllClearBulletParticle.hx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import kha.Font;
import kha.Assets;
import kha.graphics2.Graphics;

using kha.graphics2.GraphicsExtension;
using utils.GraphicsExtension;

class AllClearBulletParticle extends GarbageBulletParticle {
inline static final TEXT = "AC!";
Expand Down
2 changes: 1 addition & 1 deletion Sources/game/particles/GarbageBulletParticle.hx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import utils.Point;
import utils.Utils.lerp;
import game.copying.CopyableArray;

using kha.graphics2.GraphicsExtension;
using utils.GraphicsExtension;

@:structInit
@:build(game.Macros.buildOptionsClass(GarbageBulletParticle))
Expand Down
2 changes: 1 addition & 1 deletion Sources/game/particles/GarbageBulletTrailParticle.hx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package game.particles;

import kha.graphics2.Graphics;

using kha.graphics2.GraphicsExtension;
using utils.GraphicsExtension;

import kha.Color;
import utils.Utils.lerp;
Expand Down
2 changes: 1 addition & 1 deletion Sources/game/particles/GeloPopParticle.hx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package game.particles;

import kha.graphics2.Graphics;

using kha.graphics2.GraphicsExtension;
using utils.GraphicsExtension;

import kha.Color;
import utils.Utils.lerp;
Expand Down
2 changes: 1 addition & 1 deletion Sources/game/particles/PixelFloatParticle.hx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import kha.Color;
import utils.Utils.lerp;
import kha.graphics2.Graphics;

using kha.graphics2.GraphicsExtension;
using utils.GraphicsExtension;

@:structInit
@:build(game.Macros.buildOptionsClass(PixelFloatParticle))
Expand Down
Loading

0 comments on commit 8521a06

Please sign in to comment.