TheBestPortato24
Terrarian
So I'm a pretty new modder, and this is my code. I'm trying to make a clone of the Enchanted Boomerang to test out projectiles, but I keep receiving the message "error CS0246 The type or namespace name 'ModProjectile' could not be found. I'm confused by this since this is the exact same as in the example code on the "Basic Projectile"
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;
namespace TestMod.Projectiles
{
public class NanorangProjectile : ModProjectile
{
public override void SetStaticDefaults()
{
DisplayName.SetDefault("English Display Name Here");
}
public override void SetDefaults()
{
projectile.CloneDefaults(ProjectileID.EnchantedBoomerang);
// projectile.aiStyle = 3; This line is not needed since CloneDefaults sets it.
aiType = ProjectileID.EnchantedBoomerang;
}
// Additional hooks/methods here.
}
}
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;
namespace TestMod.Projectiles
{
public class NanorangProjectile : ModProjectile
{
public override void SetStaticDefaults()
{
DisplayName.SetDefault("English Display Name Here");
}
public override void SetDefaults()
{
projectile.CloneDefaults(ProjectileID.EnchantedBoomerang);
// projectile.aiStyle = 3; This line is not needed since CloneDefaults sets it.
aiType = ProjectileID.EnchantedBoomerang;
}
// Additional hooks/methods here.
}
}