wax-viewer/waxloader.h
2024-02-22 19:38:30 +02:00

20 lines
287 B
C++

#pragma once
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "prim.h"
class Wax
{
public:
Prim* p;
float bcx,bcy,bcz;
float anglex,angley;
float radius;
int count;
Wax() {}
Wax(char*path);
void loadconfig(char*s);
void loadprim(char*&s, Prim& p);
};