fileCellSet.h
  0
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
/*
 *  CellSet.h
 *
 *  Created by Daisuke Nogami.
 *  Copyright 2005 Daisuke Nogami [null-null.net]. All rights reserved.
 */
 
#pragma once
 
// selfmade class
#include "Cell.h"
 
class CellSet{
public:
  float xpos, ypos;
  int wdiv, hdiv;
  Cell* cells_a;
  Cell* cells_b;
 
  CellSet();
  ~CellSet();
  void update();
  void draw();
};
[トップ] [一覧] [最終更新] [検索] [バックアップ]